/* Estilo para o formulário de cadastro */
body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.cadastro-container {
    max-width: 600px;
    margin: 50px auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    padding: 30px;
}

.logo {
    text-align: center;
    margin-bottom: 30px;
    color: #0494EC;
    font-size: 2rem;
    font-weight: 700;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-weight: 600;
    color: #2c3e50;
}

.btn-cadastrar {
    background-color: #0494EC;
    color: white;
    font-weight: 600;
    padding: 10px;
    width: 100%;
    border: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-cadastrar:hover {
    background-color: #0378C4;
}

.login-link {
    text-align: center;
    margin-top: 20px;
}

footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

/* Estilo para campos dinâmicos */
.dynamic-field {
    transition: all 0.3s ease;
}
