/* =========================================================
   PÁGINA DE CADASTRO
   ========================================================= */

.cadastro-page {
    width: 100%;
    min-height: calc(100vh - 82px);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 60px 20px;

    background:
        radial-gradient(
            circle at 50% 15%,
            rgba(41, 37, 184, 0.18),
            transparent 40%
        ),
        #000000;
}


/* =========================================================
   CARD DE CADASTRO
   ========================================================= */

.cadastro-container {
    width: 100%;
    max-width: 430px;

    padding: 42px;

    background:
        linear-gradient(
            145deg,
            #111219 0%,
            #090a0f 100%
        );

    border: 1px solid rgba(255, 255, 255, 0.09);

    border-top: 2px solid var(--azul-clan);

    border-radius: 8px;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.70),
        0 0 50px rgba(41, 37, 184, 0.08);

    box-sizing: border-box;

    animation: entradaCadastro 0.45s ease;
}


/* =========================================================
   ANIMAÇÃO
   ========================================================= */

@keyframes entradaCadastro {

    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   CABEÇALHO
   ========================================================= */

.cadastro-header {
    width: 100%;

    text-align: center;

    margin-bottom: 30px;
}

.cadastro-header h1 {
    margin: 0;

    color: #ffffff;

    font-size: 31px;
    font-weight: 800;

    letter-spacing: 1px;
}

.cadastro-header h1::after {
    content: "";

    display: block;

    width: 45px;
    height: 3px;

    margin: 13px auto 0;

    background: var(--laranja-clan);
}

.cadastro-header p {
    margin: 17px 0 0;

    color: #bdbdbd;

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================================
   FORMULÁRIO
   ========================================================= */

.cadastro-form {
    width: 100%;

    display: flex;
    flex-direction: column;

    gap: 18px;
}


/* =========================================================
   CAMPOS
   ========================================================= */

.cadastro-field {
    width: 100%;

    display: flex;
    flex-direction: column;

    gap: 8px;
}

.cadastro-field label {
    color: #dddddd;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.9px;

    text-transform: uppercase;
}

.cadastro-field input {
    width: 100%;
    height: 52px;

    padding: 0 15px;

    box-sizing: border-box;

    background: #050609;

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 5px;

    outline: none;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.cadastro-field input::placeholder {
    color: #5f5f5f;
}

.cadastro-field input:hover {
    border-color: rgba(255, 255, 255, 0.22);
}

.cadastro-field input:focus {
    background: #08090d;

    border-color: var(--azul-clan);

    box-shadow:
        0 0 0 3px rgba(41, 37, 184, 0.15);
}


/* =========================================================
   BOTÃO
   ========================================================= */

.cadastro-button {
    width: 100%;
    height: 52px;

    margin-top: 5px;

    border: 1px solid var(--laranja-clan);

    border-radius: 5px;

    background: var(--laranja-clan);

    color: #ffffff;

    cursor: pointer;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1px;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.cadastro-button:hover {
    background: var(--amarelo-clan);

    border-color: var(--amarelo-clan);

    color: #111111;

    transform: translateY(-2px);

    box-shadow:
        0 8px 25px rgba(255, 105, 0, 0.20);
}

.cadastro-button:active {
    transform: translateY(0);
}


/* =========================================================
   INFORMAÇÃO
   ========================================================= */

.cadastro-info {
    width: 100%;

    margin-top: 17px;

    padding: 12px 15px;

    box-sizing: border-box;

    background: #08090d;

    border: 1px solid rgba(255, 255, 255, 0.06);

    border-left: 2px solid var(--azul-clan);

    border-radius: 4px;

    color: #777777;

    font-size: 11px;

    line-height: 1.6;

    text-align: center;
}


/* =========================================================
   RODAPÉ
   ========================================================= */

.cadastro-footer {
    width: 100%;

    margin-top: 25px;

    padding-top: 22px;

    border-top: 1px solid rgba(255, 255, 255, 0.07);

    text-align: center;
}

.cadastro-footer p {
    margin: 0;

    color: #777777;

    font-size: 13px;
}

.cadastro-footer a {
    color: var(--amarelo-clan);

    text-decoration: none;

    font-weight: 800;

    transition: color 0.2s ease;
}

.cadastro-footer a:hover {
    color: var(--laranja-clan);
}


/* =========================================================
   CORREÇÃO DE ELEMENTOS PADRÃO
   ========================================================= */

.cadastro-page *,
.cadastro-page *::before,
.cadastro-page *::after {
    box-sizing: border-box;
}


/* =========================================================
   RESPONSIVIDADE
   ========================================================= */

@media (max-width: 600px) {

    .cadastro-page {
        min-height: calc(100vh - 82px);

        padding: 40px 16px;
    }

    .cadastro-container {
        padding: 32px 24px;
    }

    .cadastro-header h1 {
        font-size: 27px;
    }
}