body{
    width: 100vw;
    height: 100vh;
    display: flex;   
    align-items: center;
    justify-content: center;
    background: rgb(0, 0, 0);
    background: linear-gradient(125deg, rgba(166, 166, 166, 0.66) 0%, rgba(50, 50, 50, 0.689) 100%);
}
form{
    background: white;
    padding: 40px;
    width: 40%;
    border-radius: 18px;
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    align-items: center;
    min-width: 640px;
    box-shadow: 5px 5px 20px -2px rgba(0,0,0,0.6);
}

img{
    width: 50%;
}

section{
    width: 60%;
}

label{
    display: block;
    font-size: 2rem;
    color: rgb(50, 50, 50);
    margin-bottom: 5px;
}

div{
    margin: 20px auto;
}

input{
    width: 100%;
    font-size: 1.5rem;
    padding: 8px;
    border: none;
    border-bottom: 2px solid rgb(50, 50, 50);
    transition: 500ms;
}

input:hover{
    border-bottom: 2px solid black;
    box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.25);
}

input:focus{
    outline: none;
}

button{
    width: 100%;
    border-radius: 8px;
    font-size: 2rem;
    padding: 12px 8px;
    color: rgb(50,50,50);
    border: 2px solid rgb(50,50,50);
    transition: 500ms;
}

button:hover{
    background: white;
    color: black;
    border: 2px solid black;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
}

.input-password{
    position: relative;
    margin-top: 0;
    margin-bottom: 0;
}
.input-password > i{
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
}

#forgot_password {
    display: block;
    text-align: center;
    font-size: 1.0rem;
    line-height: 1.2;
    padding: 16px 0 4px 0;
    color: rgb(50,50,50);
    border-bottom: 2px solid rgb(50,50,50);
    text-decoration: none;
    transition: 500ms;
}
#forgot_password:hover {
    background: white;
    color: black;
}

#version{
    position: fixed;
    bottom: 10px;
    right: 10px;
    color: white;
    font-weight: bold;
}

#forgot_password {
    display: block;
    text-align: center;
    font-size: 1.0rem;
    line-height: 1.2;
    padding: 16px 0 4px 0;
    color: rgb(50,50,50);
    border-bottom: 2px solid rgb(50,50,50);
    text-decoration: none;
    transition: 500ms;
}

#forgot_password:hover {
    background: white;
    color: black;
}