#login{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;    
    min-height: 100vh;
    width: 100vw;
}
.header{
    text-align: center;
    margin-bottom: 50px;
    max-width: 500px;
}
.header img{
    height: 74px;
    width: 85px;
}
.header h3{
    font-size: 32px;
}
.header h5{
    font-size: 20px;
    color: #8B8B8B;
}
form{
    text-align: left;
    font-size: 14px;
    width: 600px;
    display: block;
    margin-bottom: 0;
}
form input, form button{
    padding: 16px 8px;
    border-radius: 20px;
    border: 0.6px solid  #D3D3D3;
    background: #171C2208;
    margin-bottom: 13px;
}
form button{
    border: none;
    background:  #1C6AAE;
    color: white;
    margin-bottom: 0;

}
p{
    color: #8B8B8B;
}
p a{
    text-decoration: underline;
    color: #1F70B7;
}
/* mobile view  */
@media(max-width: 470px){
    .header img{
        height: 44px;
        width: 50px;
    }
    .header h3{
        font-size: 24px;
    }
    .header h5{
        font-size: 15px;
    }
    form{
        width: 380px;
    }
}