body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: "Epilogue", sans-serif;
}

.container {
    display: flex;
    height: 100vh;
}

header {
    width: 65vw;
    height: 100%;
    background-image: url(../src/loginimg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

header img {
    width: 100%;
    height: 100%;
}

#content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    width: 35vw;
    
}

#loginSection {
    width: 70%;
}
#forgotPasswordSection {
    width: 70%;
    height: 80%;
}
.forgotMail {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 22%;
}
#resetEmail {
    width: 100%;
    height: 70%;
    border-radius: 5px;
    box-sizing: border-box;
    border: 1px solid #EAECEE;
    padding-left: 8%;
}
#loginForm {
    background-color: #fff;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    height: 65vh;
    align-items: center;
    justify-content: space-evenly;
}
#content img {
    max-width: 200px;
    max-height: 200px;
}

h2 {
    margin-top: 0;
}

form {
    width: 100%;
    height: 60%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.forgotForm{
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.title {
    font-size: 210%;
    font-weight: 700;
}
.lbllog {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 22%;
    font-size: 110%;
}

#email,
#password {
    width: 100%;
    height: 65%;
    border-radius: 5px;
    box-sizing: border-box;
    border: 1px solid #EAECEE;
    padding-left: 8%;
}
form input[type="email"]:hover,
form input[type="password"]:hover {
    background-color: #EAECEE;
}
.criar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 60%;
    font-size: 80%;
}
.criar a {
    text-decoration: none;
    color: #2A6AA1;
    cursor: pointer;
}

.checkpass {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4vh;
    width: 100%;
    box-sizing: border-box;
}
.remember {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 30%;
    font-size: 80%;
}

.chkbx {
    position: relative;
    display: flex;
    align-items: center;
}

.chkbx input[type="checkbox"] {
    display: none;
}

.chkbx .toggle {
    position: relative;
    width: 40px;
    height: 20px;
    background-color: #FFFFFF;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    box-shadow: inset 1px 0px 6px 1px #0000004d;
}

.chkbx .toggle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 2px;
    width: 16px;
    height: 16px;
    background-color: #FFFFFF;
    box-shadow: 2px 1px 2px #0000004d;
    border-radius: 50%;
    transform: translateY(-50%);
    transition: left 0.3s;
}

.chkbx input[type="checkbox"]:checked + .toggle {
    background-color: green;
}

.chkbx input[type="checkbox"]:checked + .toggle::before {
    left: 22px;
}
#forgotPassword {
    text-decoration: none;
    color: #2A6AA1;
    cursor: pointer;
    font-size: 80%;
}
button {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    cursor: pointer;
    color: #fff;
    width: 100%;
    height: 10%;
    font-size: 110%;
    background-color: #91BA39;
    font-weight: 700;
    border: none;
}

#entrar {
    padding: 10px 20px;
    border: none;
    background-color: #2A6AA1;
    height: 15%;
}

#entrar:hover, #enviarForgot:hover {
    background-color: #2a69a1de
}
#enviarForgot {
    padding: 10px 20px;
    border: none;
    background-color: #2A6AA1;
    height: 18%;
}
#goBack {
    padding: 10px 20px;
    border: none;
    background-color: transparent;
    color: #4DB0DF;
    border: 1px solid #4DB0DF;
    height: 18%;
}
#goBack:hover {
    box-shadow: 0px 0px 4px #58c0f0;
    background-color: #f5f5f5;
}
.hr {
    width: 100%;
    height: 1px;
    border: none;
    background-color: #E5E5E5;
}