*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    position: center;
}

body{

    background: ghostwhite;
    font-family: 'Roboto', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
}



.container{
    margin:auto;
    max-width: 600px;
    border-radius: 20px;
}

.card{
    border-radius:  20px;
    height: 600px;
    background-image: linear-gradient(to right, #376F8C, #986BD6);
    border:none;
    overflow: hidden;
    box-shadow: 0 5px 8px #414141;
    z-index: 0;
    box-sizing: border-box;
}

.circle{
    position:absolute ;
    bottom: -230px;
    left: 50%;
    transform: translate(-50%,-50%);
    background: white;
    clip-path: circle(50%) ;
    height: 700px;
    width: 700px;
    z-index: -1;
    overflow: hidden;
}

.myHed {
    margin-top: 30px;
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 700;
    background-image: linear-gradient(to right,  #376F8C, #986BD6);
    color: transparent;
    -webkit-background-clip: text;
}

.far {
    font-size:40px;
}
.fas{
    position:relative;
    display:block;
    left: -87px;
    top: 30px;
    color: lightseagreen;
}

.loginbutton{
    padding-top: 30px;
}
.button{
    width:100px;
    border-radius:25px;
    background-image: linear-gradient(to right, #376F8C, #986BD6);
    color:#fff;
    font-weight:700;
}

.myInput{
    width:220px;
    padding: 10px 10px 10px 40px;
    border-radius: 25px;
    background-image: linear-gradient(to right, #376F8C, #986BD6);
    color:white;
    border:none;
    display:block;
}

.myInput::placeholder{
    color: white;
    opacity: 0.6;
}

.myInput:focus{
    border:none;
    outline:none;
}

.check_1{
    font-weight:500;
    color: #169DA8;
    font-size: 12px;
    margin: 25px auto;
    cursor: pointer;
}

@media (max-width:768px){
    .container{
        max-width: 100%;
    }
}




