*{
    margin: 0px;
}

body{
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #D6C0B3;
}

.head{
    text-align: center;
}

.login-page{
    background-color: #D6C0B3;
    padding: 5.2% 10%;
    justify-items: center;
    align-items: center;
    position: sticky;
}

.login-container{
    background: white;
    border: 2px solid #754E1A;
    padding: 8% 20%;
}

.login-container h2{
    font-size: 40px;
    margin-bottom: 40px;
    color: #3b2b1e;
    font-family: 'Times New Roman', Times, serif;
}

.login-container h4{
    font-size: 25px;
    margin-bottom: 10px;
    color: #754E1A;
}

.login-container input{
    width: 350px;
    height: 45px;
    margin-bottom: 25px;
    border: 2px solid #6e523f;
    border-radius: 10px;
    padding-left: 15px;
    font-size: large;
}

.login-container input:hover{
    border: 2px solid #AB886D;
    transition: all .5s ease-out;
}

.btn{
    width: 375px;
    height: 50px;
    border-radius: 10px;
    font-size: larger;
    font-weight:bolder;
    margin-bottom: 20px;
    margin-top: 10px;
    border: 2px solid #D6C0B3;
    color: #D6C0B3;
    background-color: #6e523f;
}

.btn:hover{
    transition: all 1s;
    cursor: pointer;
    color: #754E1A;
    border: 2px solid #754E1A;
    background-color: #D6C0B3;
}

p{
    font-size: 17px;
    color: black;
    text-align: center;
    
}

p a{
    text-decoration: none;
}

.message{
    text-align: center;
    text-transform: capitalize;
    margin: 14px auto;
    margin-bottom: 2 rem;
    width: 88%;
    padding: .5rem 1.5rem; 
    border-radius: 5px;
    display: flex;
    /* justify-content: space-between; */
    background: #000;
    color: #D6C0B3;
}

.message i{
    cursor: pointer;
    margin-left: 10px;
}