body {
    min-height: 100vh;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background: url('../IMAGENS/bg-login.png') no-repeat center center fixed;
    background-size: cover;
    opacity: 0.13;
    pointer-events: none;
}

section {
    box-shadow: 0 8px 24px rgba(0,0,0,0.18), 0 1.5px 4px rgba(0,0,0,0.12);
    border-radius: 12px;
    background: transparent; /* Remova o fundo branco/translúcido */
}

.cadastro-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 85vh;
    padding: 0;
}

.cadastro-form {
    background: var(--branco);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    min-width: 340px;
}

.cadastro-form h2 {
    margin-bottom: 2rem;
    text-align: center;
    color: var(--azul-escuro);
}

.cadastro-form .form-group {
    margin-bottom: 1.2rem;
    text-align: left;
}

.cadastro-form label {
    font-weight: bold;
    color: var(--azul-escuro);
}

.cadastro-form input[type="text"],
.cadastro-form input[type="email"],
.cadastro-form input[type="password"],
.cadastro-form input[type="tel"] {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid var(--cinza-medio);
    border-radius: 5px;
    font-size: 1rem;
}

.cadastro-form .btn,
.btn {
    box-shadow: 0 4px 14px rgba(0,0,0,0.18), 0 1px 3px rgba(0,0,0,0.12);
    transition: box-shadow 0.2s;
    font-size: 1.15rem; /* Aumenta o tamanho da fonte dos botões */
    font-weight: bold;
    border: none;       /* Remove a borda */
    outline: none;      /* Remove o contorno ao focar */
}

.cadastro-form .btn:hover,
.btn:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.22), 0 2px 8px rgba(0,0,0,0.15);
}

.login-link {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--cinza-medio);
}

.login-link a {
    color: var(--verde-principal);
    text-decoration: none;
    font-weight: bold;
}

.login-link a:hover {
    text-decoration: underline;
}

.main-footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    margin: 0;
    z-index: 10;
}
