:root {
    --primary-color: #2299DE;
    --secondary-color: #3498db;
    --accent-color: #1abc9c;
    --light-bg: #f8f9fa;
    --border-radius: 8px;
}

.header-content {
    width: 100%;
    height: 274px;
    background-image: url('../asset/images/tawthiq-logo.jpg');
    color: white;
    padding: 2rem 0;
    background-size: contain;
    background-repeat: no-repeat;
    border-bottom: 5px solid var(--accent-color);
    margin-bottom: 2rem;
}

.header h1 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.form-container {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    margin-bottom: 2rem;
}

.form-title {
    color: var(--primary-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.required-field::after {
    content: " *";
    color: #e74c3c;
}

.form-control,
.form-select {
    border-radius: var(--border-radius);
    padding: 0.75rem;
    border: 1px solid #ddd;
    transition: all 0.3s;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}

.file-upload-container {
    border: 2px dashed #ddd;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    background-color: #fafafa;
    transition: all 0.3s;
    cursor: pointer;
}

.file-upload-container:hover {
    border-color: var(--secondary-color);
    background-color: #f0f8ff;
}

.file-upload-container i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.file-info {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.btn-submit {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    transition: all 0.3s;
    width: 100%;
    margin-top: 1rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
    border-radius: var(--border-radius);
    padding: 1rem;
    margin-top: 1.5rem;
}

.alert-success.show {
    display: block;
    animation: fadeIn 0.5s;
}

.file-preview {
    margin-top: 1rem;
    padding: 0.75rem;
    background-color: #f8f9fa;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-color);
}

.file-preview .file-name {
    font-weight: 600;
    color: var(--primary-color);
}

.file-preview .file-size {
    font-size: 0.85rem;
    color: #666;
}

.file-preview .remove-file {
    color: #e74c3c;
    cursor: pointer;
    float: right;
}

footer {
    background-color: var(--light-bg);
    color: #000;
    padding: 1.5rem 0;
    margin-top: 2rem;
    text-align: center;
}

#etsNameAr {
    text-align: right;
}

#lblEtsAr {
    align-items: end;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .form-container {
        padding: 1.5rem;
    }

    .header h1 {
        font-size: 1.8rem;
    }
}