/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
.form-section {
    padding: 60px 0;
}

.form-container {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    color: #0056b3;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
}

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

.form-group label {
    font-weight: 600;
    color: #333;
}

.form-control {
    border-radius: 5px;
    border: 1px solid #ced4da;
    padding: 15px;
    height: auto;
}

.form-control:focus {
    border-color: #0056b3;
    box-shadow: 0 0 5px rgba(0, 86, 179, 0.25);
}

.form-container .btn-primary {
    background-color: #0056b3;
    border-color: #0056b3;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.form-container .btn-primary:hover {
    background-color: #004494;
    border-color: #004494;
}

.custom-file-input ~ .custom-file-label::after {
    content: "Procurar";
}
