#login{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;    
    min-height: 100vh;
    width: 100vw;
}

.card .header{
    text-align: center;
}
.card h3{
    color: #222124;
    font-family: 'Inter';
    font-size: 32px;
    font-weight: 600;
    line-height: 40%;
    letter-spacing: -0.96px;
}
.header p{
    color: #5A5C60;
    font-family: 'Montserrat';
    font-size: 16px;
    font-weight: 400;
}
.card form p{
    color: #5A5C60;
    font-family: 'Montserrat';
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -0.007px;
}
.card form p span{
    color: #F13A00;
}
.card form input{
    border-radius: 8px;
    border: 1px solid #E6E6E6;
    display: flex;
    width: 100%;
    padding: 12px 20px;
    align-items: center;
    flex-shrink: 0;
    font-family: 'Montserrat';
}
.card form input.checkbox{
    width: 13px;
    display: inline-block;
}
.card form button{
    border-radius: 26px;
    background-color:#1448B2;
    padding: 15px 150px;
    border: none;
    color: white;
    Font-family: 'Montserrat';
    margin-bottom: 15px;
}
.center{
    text-align: center;
}
.card form p a,
.card form p a:hover{
    text-decoration: none;
    color: #1448B2;
}
/* laptop view  */
@media(min-width: 920px){

    #login .card{
        border-radius: 10px;
        background: #FAFAFA;
        box-shadow: 0px 5px 59px 0px rgba(188, 188, 188, 0.20);
        width: 570px;
        min-height: 679px;
        padding: 50px;
    }
}

/* mobile view  */
@media(max-width: 470px){
    #login .card{
        border: none;
    }
    .card form button{
        width: 278px;
        height: 50px;
        padding: 10px 0px;
    }
}