﻿.modal-code {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    max-width: 550px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s;
    z-index: 1040;
}

#overlay-2fa-email {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.header-modal-2fa {
    display: flex;
    justify-content: flex-end;
}

.cancel-button {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    cursor: pointer;
    border: none;
    background-color: transparent;
    color: var(--Primria-3, var(--primary-color-medium, #EC780A));
    right: 15px;
}

.image-container-send-code {
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--spacing-05, 8px);
    background: var(--Neutro-2, #EDF1F6)
}

    .image-container-send-code img {
        max-width: 100%;
        max-height: 100%;
    }

.title-modal-send-code {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-family: inherit;
    text-align: center;
    color: var(--Tipografia-escura-Enfase-1, var(--typography-black-emphasis-1, rgba(30, 6, 49, 0.95)));
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 32px;
}

.info-send-code {
    color: var(--Tipografia-escura-Enfase-2, rgba(6, 13, 72, 0.60));
    text-align: center;
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 400; /* Regular */
    font-size: 18px;
    line-height: 24px;
}

.dest-send-code {
    color: var(--Tipografia-escura-Enfase-2, rgba(6, 13, 72, 0.60));
    text-align: center;
    font-family: inherit;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    display: block;
    text-align: center;
    color: var(--typography-black-emphasis-1, rgba(30, 6, 49, 0.95));
}

.code-input-container {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.code-input {
    width: 40px;
    height: 50px;
    text-align: center;
    font-size: 24px;
    border: 1px solid #ccc;
    border-radius: 10px;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s;
}

.code-input-otp {
    width: 40px;
    height: 50px;
    text-align: center;
    font-size: 24px;
    border: 1px solid #ccc;
    border-radius: 10px;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s;
}

    .code-input:focus {
        border-color: #007BFF;
    }

.container-error-code {
    padding: 20px 70px 0 70px;
    display: none;
}

.title-error-validate-code {
    text-align: center;
    font-family: inherit;
    font-style: normal;
    line-height: 24px;
    display: block;
    color: var(--Auxiliar-Erro-2, var(--red-neutral, #DB2A2C));
    font-size: 18px;
    font-weight: 600;
}

.info-error-validate-code {
    font-family: inherit;
    font-style: normal;
    display: block;
    color: var(--Tipografia-escura-Enfase-2, rgba(6, 13, 72, 0.60));
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.send-code-again {
    color: var(--Tipografia-escura-Enfase-3, var(--typography-black-emphasis-3, rgba(6, 13, 72, 0.25)));
    text-align: center;
    font-family: inherit;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    display: block;
    padding-left: 8px;
}
