﻿
.auth-page {
    display: flex;
    height: calc(100vh - 160px);
    box-sizing: border-box;
    max-width: 500px;
    align-items: center;
    align-content: center;
    margin: 0 auto;
}

.auth-page-registration {
    display: flex;
    height: calc(100vh + 160px);
    box-sizing: border-box;
    max-width: 500px;
    align-items: center;
    align-content: center;
    margin: 0 auto;
    margin-bottom:100px;
}

    .auth-page h2 {
        color: var(--primary-text-color);
    }


.links-auth.auth {
    display: flex;
    gap: 20px;
    width: 100%;
    flex-direction: column;
}


.links-auth.registration {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    align-items: center;
    font-size: 20px;
}


.title-divider {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 10px;
}

    .title-divider::before,
    .title-divider::after {
        content: "";
        flex: 1;
        height: 1px;
        background-color: var(--primary-text-color);
    }

    .title-divider h3 {
        margin: 0;
        font-size: 18px;
        color: #333;
        white-space: nowrap;
        color: var(--primary-text-color);
    }

.imag-kart-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    justify-content: flex-start;
}

.imag-kart-container-registration {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    justify-content: flex-start;
}

.imag-kart {
    width: auto;
    height: 180%; 
    max-height: 2000%; 
    object-fit: contain;
}


.imag-kart-auth {
    width: auto;
    height: 180%;
    max-height: 2000%;
    object-fit: contain;
}

/* Estilo para o contêiner de termos e condições */
.terms-conditions {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    margin: 15px 0;
    color: var(--primary-text-color);
}


.checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    outline: none;
    background-color: transparent;
}


    .checkbox:checked {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }


        .checkbox:checked::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            width: 10px;
            height: 10px;
            background-color: white;
            border-radius: 50%;
            transform: translate(-50%, -50%);
        }


.terms-conditions a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

    .terms-conditions a:hover {
        color: var(--primary-color);
    }


.address-section {
    width: 100%;
    background-color: #F4F4F4;
    padding: 20px 20px 0 20px;
    border-radius: 5px;
}

@media (max-width: 710px) {
    .auth-page {
        padding: 20px;
    }

    .auth-page-registration {
        padding: 20px;
        height: calc(100vh + 160px);
    }
}