﻿.iframe-registrationPage {
    display: flex;
    box-sizing: border-box;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    overflow-y: hidden;
}

.iframe-page-registration {
    display: flex;
    box-sizing: border-box;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
}


.links-iframe-registration {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    align-items: center;
    font-size: 20px;
    padding: 50px 0;
}

    .links-iframe-registration h2 {
        margin-bottom: 20px;
    }


.flex-direction-iframe {
    display: flex;
    flex-direction: row;
    gap: 15px;
    width: 100%;
}

    .flex-direction-iframe svg {
        margin-top: 15px;
    }

.flex-direction-form-iframe {
    display: flex;
    flex-direction: row;
    gap: 30px;
    width: 100%;
}

.registration-section-iframe {
    width: 100%;
}

.address-section-iframe {
    width: 100%;
}




.terms-conditions-iframe {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    margin: 15px 0;
    color: var(--primary-text-color);
}


.checkbox-iframe {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    background-color: white;
}

    .checkbox-iframe:checked {
        background-color: var(--primary-color, #E40E18);
        border: 2px solid black;
    }

        .checkbox-iframe:checked::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            width: 10px;
            height: 10px;
            background-color: white;
            border-radius: 0%;
            transform: translate(100%);
        }


.terms-conditions-iframe a {
    text-decoration: none;
    transition: color 0.3s;
}


.error-message-iframe {
    color: red;
    margin-top: 10px;
    font-size: 15px;
    text-align: center;
    text-decoration: none;
    margin-bottom: 10px;
}




/* Botão */
.button-iframe {
    background-color: var(--primary-color, #E40E18);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 12px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-family: 'BarlowCondensed', sans-serif;
    margin-top: 10px;
}

    .button-iframe:disabled {
        background-color: #2a2929; /* cor de fundo quando desabilitado */
        color: #CCCCCC; /* cor do texto quando desabilitado */
        cursor: not-allowed; /* cursor indicando desabilitado */
        opacity: 0.7; /* opcional: deixa o botão mais "apagado" */
    }

.buttonSlim-iframe {
    background-color: transparent;
    border: none;
    border-radius: 5px;
    padding: 12px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
    font-family: 'BarlowCondensed', sans-serif;
    margin-top: -12px;
}

    .buttonSlim-iframe:hover {
        text-decoration: underline;
        cursor: pointer;
    }


/* Estilo para os inputs e selects */
.input-field-iframe {
    background-color: white;
    color: black;
    border: solid 2px black;
    border-radius: 5px;
    padding: 12px;
    font-size: 20px;
    width: 100%;
    text-align: left;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
    font-family: 'BarlowCondensed', sans-serif;
    height: 54px;
}

    .input-field-iframe:focus {
        outline: none;
        background-color: #f5f5f5;
    }

    .input-field-iframe.spaceInput {
        margin-bottom: 20px;
    }

.countdown-iframe {
    margin-bottom: 20px;
    margin-top: 20px;
}

@media (max-width: 710px) {
    .iframe-page-registration {
        padding: 20px;
    }

    .flex-direction-form-iframe {
        flex-direction: column;
    }
}
