/* Layout Structure */
.solicitarea {
    margin-top: 20px;
    margin-bottom: 100px;
}

.solicitarea .wrapper {
    max-width: 1204px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
}

.solicitarea-flex-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* CENTER LAYOUT */
    margin-left: -15px;
    margin-right: -15px;
}

/* Centered Form Container override */
.el-form-container {
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 15px;
    margin-right: 15px;
    width: 100%;
    max-width: 700px;
    /* Constrain width so it looks good centered */
}

/* Form Styling */
.form-box {
    padding: 12px 15px;
    border: 2px solid #15B2E4;
    box-sizing: border-box;
    background: #fff;
}

.form-box input:not([type='checkbox']),
.form-box select {
    width: 100%;
    height: 50px;
    background: #E6E6E6;
    border: none;
    margin-bottom: 10px;
    padding-left: 15px;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 14px;
    color: #383D42;
}

.form-box select {
    appearance: auto;
}

.form-box input::placeholder {
    color: rgba(56, 61, 66, 0.5);
}

.form-grid label {
    color: #383D42;
    font-weight: bold;
    font-size: small;
    display: block;
    margin-bottom: 5px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border: 2px solid #15B2E4;
}

/* Grid Helper */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 15px;
}

.full-width {
    grid-column: 1 / -1;
}

.section-title {
    color: #15B2E4;
    margin-top: 25px;
    margin-bottom: 10px;
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 5px;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* Buttons */
.action-button {
    display: inline-block;
    background-color: #15B2E4;
    color: white;
    font-weight: 500;
    font-size: 14px;
    border: 1px solid #15B2E4;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
    padding: 8px 15px;
}

.action-button:hover {
    background-color: #0d8cc2;
}

.btn-submit {
    width: 100%;
    height: 50px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

/* Checkboxes */
.agreements-section {
    margin-top: 15px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 12px;
    color: rgba(56, 61, 66, 0.7);
}

.checkbox-container input {
    margin-top: 3px;
    margin-right: 10px;
}

.checkbox-container p {
    margin: 0;
    text-align: justify;
}

/* Validation Styles */
.has-error input {
    border: 1px solid red;
}

.error-text {
    color: red;
    font-size: 12px;
    display: block;
    margin-top: -8px;
    margin-bottom: 10px;
}

.status-msg {
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
}

.status-msg.success {
    color: green;
}

.status-msg.error {
    color: red;
}