/* Estilos para a página de cadastro */
.cadastro-area {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.cadastro-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.cadastro-title {
    text-align: center;
    margin-bottom: 30px;
}

.cadastro-title h2 {
    color: #222;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.cadastro-title p {
    color: #777;
    font-size: 16px;
}

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

.cadastro-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.cadastro-form .form-control {
    width: 100%;
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 0 15px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.cadastro-form .form-control:focus {
    border-color: #f7c35f;
    box-shadow: 0 0 8px rgba(247, 195, 95, 0.3);
}

.cadastro-form .btn-cadastro {
    width: 100%;
    height: 50px;
    background-color: #f7c35f;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cadastro-form .btn-cadastro:hover {
    background-color: #e5b54d;
}

.cadastro-links {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.cadastro-links a {
    color: #f7c35f;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.cadastro-links a:hover {
    color: #e5b54d;
    text-decoration: underline;
}

/* Estilos para campos com erro */
.cadastro-form .form-control.error {
    border-color: #dc3545;
}

.cadastro-form .error-message {
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
}

/* Estilos responsivos */
@media (max-width: 767px) {
    .cadastro-container {
        padding: 30px 20px;
    }
    
    .cadastro-form .form-group-half {
        width: 100%;
        padding: 0;
    }
}

/* Estilos para os campos em duas colunas */
.form-row {
    display: flex;
    margin-left: -10px;
    margin-right: -10px;
}

.form-group-half {
    width: 50%;
    padding: 0 10px;
}

/* Estilo para o alerta de mensagem */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}