*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f5f5f5;
}
main{
    padding-top: 40px;
    margin: auto;
    padding: 24px;
    background-color: #EAEAEA;
    width: fit-content;
}
h1{
    text-align: center;
    padding-bottom: 1px;
    font-weight: lighter;
}
form{
    display: flex;
    flex-direction: column;
    width: 345px;
    padding: 24px;
    box-shadow: 4px 4px 6px 4px #e3e3e3;
    gap: 15px;
    border-radius: 2px;
    background-color: #ffffff;
}
.input-container{
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}
p{
    color: #DC3545;
}
.input-container label{
    color: #777777;
    font-size: smaller;
}
.input-container input{
    /* font-size: small; */
    padding: 10px;
    border:1px #e3e3e3 solid ;
    border-radius: 3px;
    box-shadow: 2px 2px 5px #e3e3e3;
}
.input-container.show-password {
    display: flex;
    flex-direction: row;
    /* align-items: center; */
    gap: 8px;
}

#show-password-input {
    width: auto;
    cursor: pointer;
}

.show-password label {
    font-size: smaller;
    color: #777777;
    cursor: pointer;
}
#submit{
    padding: 10px;
    border: none;
    /* border-radius: 5px; */
    background-color: #007bff;
    color: white ;
    font-size: medium ;
    cursor: pointer;
}
