/* =========================================
   CADASTRO — AZURY
========================================= */

#btnCadastrar {
    width: 100%;
    min-height: 54px;

    border: 1px solid var(--cor-principal);
    border-radius: 14px;

    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--cor-principal),
        #003dbf
    );

    font-family: inherit;
    font-size: 16px;
    font-weight: 800;

    cursor: pointer;

    box-shadow: 0 12px 25px rgba(0, 81, 255, 0.25);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        opacity 0.2s ease;
}

#btnCadastrar:hover {
    transform: translateY(-2px);

    box-shadow: 0 18px 35px rgba(0, 81, 255, 0.35);
}

#btnCadastrar:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

.texto-cadastro a {
    color: var(--cor-principal);
    font-weight: 700;
    text-decoration: none;
}

.texto-cadastro a:hover {
    text-decoration: underline;
}