* {
    box-sizing: border-box; 
}

html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    justify-content: center; 
    align-items: center;
}

.login {
    width: 350px; 
    max-width: 400px;
    margin: 80px auto; 
    padding: 40px; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); 
    border-radius: 10px; 
    display: flex; 
    flex-direction: column;
    align-items: center; 
    background-color: white;
}

@media screen and (max-width < 768px){
    .login{
        width: 100%;
    }
}

.login img{
    width:auto;
    height: auto;
    margin-bottom: 21px;
}

.login .form-group{
    margin-bottom: 15px;
}

.login .form-group label{
    font-family: Montserrat, sans-serif;
    padding-bottom: 8px;
    color: rgb(54, 52, 52);
    font-size: 18px;
}

.login label, .login input, .login button {
    width: 100%; 
    border: 0; 
    outline: 0; 
    border-radius: 5px; 
}

.login input {
    border: 1px rgb(180, 178, 178) solid; 

    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    padding: .375rem .75rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.login button {
    font-family: Montserrat, sans-serif;
    background-color: #BA9048; 
    color: white; 
    cursor: pointer;
    border: 1px solid #e3f4f6;
    font-weight: 500;
    font-size: 18px;
    padding: 14px;
}

.login button:hover {
    background-color: #a1783b; 
    color: white;
}