* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Lato", sans-serif;
}

body,
html {
    height: 100%;
    background-color: #f9f9f9;
}

.login-main-container {
    display: flex;
    height: 100vh;
    overflow: hidden;
    background-color: white;
}

.left-panel {
    flex: 1;
    position: relative;
    background-color: white;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    border-radius: 0 30px 30px 0;
    overflow: hidden;
}

    .left-panel img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .left-panel .logo {
        position: absolute;
        margin-bottom: 64px;
        width: auto;
        height: auto;
        z-index: 5;
        left: 74px;
    }

.right-panel {
    flex: 1;
    background: white;
    display: flex;
    justify-content: center;
    padding: 120px 0px 32px 0px;
    overflow:auto;
}

.form-box {
    width: 100%;
    max-width: 370px;
}

.tabs {
    display: flex;
    margin-bottom: 16px;
}

    .tabs button {
        flex: 1;
        padding: 12px;
        border: none;
        background: none;
        font-weight: bold;
        border-bottom: 1px solid #ccc;
        cursor: pointer;
        font-size: 16px;
        font-weight: 400;
        color: rgba(67, 62, 63, 0.7);
    }

        .tabs button.active {
            border-bottom: 1px solid #000b8c;
            background-color: #d7e6ff;
            color: #000b8c;
            border-radius: 6px 6px 0 0;
        }

.social-login p {
    color: #433e3f;
    font-size: 13px;
    text-align: center;
}

.social-buttons {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

    .social-buttons button {
        flex: 1;
        margin: 0 5px;
        padding: 8px;
        border: 1px solid #ccc;
        border-radius: 6px;
        cursor: pointer;
        background-color: white;
    }

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 24px 0px;
    font-size: 13px;
    color: #433e3f;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0%;
}

    .divider::before {
        content: "";
        flex: 1;
        border-bottom: 2px solid #f5f5f5;
        margin: 0px 10px 0px 0px;
    }

    .divider::after {
        content: "";
        flex: 1;
        border-bottom: 2px solid #f5f5f5;
        margin: 0px 0px 0px 10px;
    }

form input[type="text"],
form input[type="password"],
form input[type="email"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 16px;
    border: 1px solid #e9e9ed;
    border-radius: 8px;
    height: 58px;
    background-color: #f9f9fa;
    font-size: 20px;
    color: rgba(67, 62, 63, 1);
    font-weight: 400;
}

.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 12px;
    cursor: pointer;
}

.hidden {
    display: none !important;
}

.forgot-password {
    display: block;
    text-align: right;
    font-size: 13px;
    margin-bottom: 24px;
    color: #433e3f;
    text-decoration: none;
}

.captcha {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    position: relative;
}

    .captcha input {
        width: 24px;
        height: 24px;
        top: 0px;
        position: absolute;
    }

.login-btn {
    width: 100%;
    padding: 12px;
    background-color: #000eb5;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    height: 60px;
    font-size: 20px;
}

.signup-text {
    text-align: center;
    margin-top: 16px;
    font-size: 16px;
    color: rgba(67, 62, 63, 1);
}

    .signup-text a {
        color: #000b8c;
        text-decoration: none;
    }

.hidden {
    display: none;
}

/* Responsivo */
@media (max-width: 768px) {
    .login-main-container {
        flex-direction: column;
    }

    .left-panel {
        height: 250px;
        border-radius: 0 0 30px 30px;
    }

        .left-panel .logo {
            left: auto;
        }

    .right-panel {
        padding: 16px;
    }
}

/*restabelecer senha*/

.center-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.form-logo {
    height: 50px;
    margin-bottom: 55px;
}

.form-title {
    font-size: 25px;
    margin-bottom: 16px;
    color: #433e3f;
    font-weight: 600;
}

.form-instructions {
    font-size: 16px;
    color: rgba(67, 62, 63, 0.8);
    margin-bottom: 24px;
    line-height: 1.4;
    width: 90%;
}

.input-wrapper {
    position: relative;
}

    .input-wrapper .input-icon {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 18px;
        color: #999;
    }

    .input-wrapper input[type="email"] {
        padding-left: 40px;
    }

.bottom-link {
    margin-top: 16px;
    font-size: 16px;
}

    .bottom-link a {
        color: #000b8c;
        text-decoration: none;
    }

/* Responsivo */
@media (max-width: 768px) {
    .form-box {
        padding: 0 16px;
    }
}

/*EMAILS*/

.email-container {
    display: flex;
    justify-content: center;
    border-radius: 8px;
    border: 30px solid #000b8c;
    width: 100%;
    margin: auto;
    max-width: 600px;
    background-color: #000b8c;
}

.email-card {
    background-color: white;
    width: 100%;
    padding: 32px 24px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.email-logo {
    max-width: 188px;
    display: block;
    margin: 28px auto;
    padding-bottom: 24px;
}

.email-text {
    font-size: 16px;
    color: #433e3f;
    margin-bottom: 16px;
    line-height: 1.5;
}

    .email-text.small {
        font-size: 14px;
        color: rgba(67, 62, 63, 0.8);
    }

.verify-button {
    display: inline-block;
    background-color: #000eb5;
    color: white;
    padding: 20px 24px;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    margin: 8px 0px 24px 0px;
    transition: background 0.3s;
    width: 100%;
    height: 60px;
}

    .verify-button:hover {
        background-color: #000b8c;
    }

.email-signature {
    font-size: 16px;
    color: #433e3f;
    margin-top: 24px;
    margin-bottom: 16px;
}

.email-footer {
    font-size: 14px;
    color: #000b8c;
    text-align: center;
    margin-top: 32px;
}

    .email-footer a {
        color: #000b8c;
        text-decoration: none;
    }

.email-divider {
    border: none;
    border-top: 1px solid #e5e5e5;
    margin: 24px 0 24px 0;
}

/* Responsivo */
@media (max-width: 600px) {
    .email-card {
        padding: 24px 16px;
    }

    .email-logo {
        max-width: 150px;
    }
}

.email-text-title {
    font-size: 24px;
    font-weight: bold;
    color: #433e3f;
    margin-bottom: 24px;
}

.loader {
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 8px solid;
    border-color: #000 #0000;
    animation: l1 1s infinite;
}

@keyframes l1 {
    to {
        transform: rotate(.5turn)
    }
}

#login-password, #counterPassowrd, #password {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M18 10.5H16.5V6C16.5 3.51472 14.4853 1.5 12 1.5C9.51472 1.5 7.5 3.51472 7.5 6V10.5H6C5.17157 10.5 4.5 11.1716 4.5 12V21C4.5 21.8284 5.17157 22.5 6 22.5H18C18.8284 22.5 19.5 21.8284 19.5 21V12C19.5 11.1716 18.8284 10.5 18 10.5ZM9 6C9 4.34315 10.3431 3 12 3C13.6569 3 15 4.34315 15 6V10.5H9V6ZM18 21H6V12H18V21Z' fill='%23150E34'/%3E%3Cpath d='M18 10.5H16.5V6C16.5 3.51472 14.4853 1.5 12 1.5C9.51472 1.5 7.5 3.51472 7.5 6V10.5H6C5.17157 10.5 4.5 11.1716 4.5 12V21C4.5 21.8284 5.17157 22.5 6 22.5H18C18.8284 22.5 19.5 21.8284 19.5 21V12C19.5 11.1716 18.8284 10.5 18 10.5ZM9 6C9 4.34315 10.3431 3 12 3C13.6569 3 15 4.34315 15 6V10.5H9V6ZM18 21H6V12H18V21Z' fill='white' fill-opacity='0.25'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 10px center;
    padding-left: 40px
}

#email {
    padding-left: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M21 4.5H3C2.17157 4.5 1.5 5.17157 1.5 6V18C1.5 18.8284 2.17157 19.5 3 19.5H21C21.8284 19.5 22.5 18.8284 22.5 18V6C22.5 5.17157 21.8284 4.5 21 4.5ZM19.35 6L12 11.085L4.65 6H19.35ZM3 18V6.6825L11.5725 12.615C11.8296 12.7934 12.1704 12.7934 12.4275 12.615L21 6.6825V18H3Z' fill='%23150E34'/%3E%3Cpath d='M21 4.5H3C2.17157 4.5 1.5 5.17157 1.5 6V18C1.5 18.8284 2.17157 19.5 3 19.5H21C21.8284 19.5 22.5 18.8284 22.5 18V6C22.5 5.17157 21.8284 4.5 21 4.5ZM19.35 6L12 11.085L4.65 6H19.35ZM3 18V6.6825L11.5725 12.615C11.8296 12.7934 12.1704 12.7934 12.4275 12.615L21 6.6825V18H3Z' fill='white' fill-opacity='0.25'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 10px center;
}

#register-form {
    position: relative;
}

.loader-container {
    position: absolute;
    background-color: #99999966;
    height: 100%;
    width: 100%;
    display: flex;
    z-index: 10;
    align-items: center;
    justify-content: center;
}

.validation-field {
    text-align: center;
}

.captcha input[type="checkbox"].error {
    border-color: red;
    border: 1px solid red;
}

.captcha input[type="checkbox"].error {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
