

/* Main Content Specifics */
.main-content { padding: 40px 0 60px; }
.page-title { text-align: center; color: var(--primary-blue); font-weight: 700; font-size: 24px; text-transform: uppercase; margin-bottom: 10px; }
.title-underline { height: 2px; width: 100%; background-color: #e0e0e0; margin-bottom: 30px; }
.intro-text {max-width: 900px;margin: 0 auto 40px;font-size: 14px;/* font-style: italic; */color: #555;font-weight: 800;color: var(--primary-blue);}

/* Form Styles */
.admission-form { max-width: 900px; margin: 0 auto; }
.form-section-title { color: var(--primary-blue); font-size: 16px; font-weight: 700; text-transform: uppercase; border-bottom: 2px solid var(--primary-blue); display: inline-block; padding-bottom: 5px; margin-bottom: 20px; }
.section-desc { font-size: 14px; color: #555; margin-bottom: 15px; }
.section-note {font-size: 14px;color: #666;/* font-style: italic; */margin-top: 5px;font-weight: 800;}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px 40px; }
.grid-3-cols { grid-template-columns: repeat(3, 1fr) !important; }.sub-method-content .form-grid {
    gap: 20px 12px;
}
.sub-method-section label {
    font-weight: 700;
    font-size: 20px;
    margin: 0;
    cursor: pointer;
    color: #1e5a8e;
}
.form-group { 
    display: flex; 
    flex-direction: row; 
    align-items: center; 
    gap: 0; /* Bỏ gap vì sẽ dùng padding của label */
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    padding: 5px 20px;
    background-color: #fff;
    transition: all 0.3s;
}
.form-group:focus-within {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 124, 178, 0.1);
}

.form-group.full-width { grid-column: span 2; }
.form-group label {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    min-width: auto; /* Width auto */
    white-space: nowrap;
    margin: 0;
    padding-right: 10px; /* Khoảng cách với input */
}

/* Style cho row chia đôi (Dân tộc - Tôn giáo) */
.split-row {
    display: flex;
    gap: 15px;
}
.split-row .form-group {
    flex: 1;
}


.form-control::placeholder {
    color: #cccdce;
}
.form-control {
    flex: 1;
    padding: 8px 0;
    border: none !important;
    border-radius: 0;
    font-size: 14px;
    outline: none;
    box-shadow: none !important;
    background-color: transparent;
    width: 100%; /* Ensure full width */
    font-weight: 700;
}
.form-control:focus { border-color: transparent; }
select.form-control { appearance: none; -webkit-appearance: none; background: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E") no-repeat right 0 center; background-size: 10px auto; background-color: transparent;}

.double-input { display: flex; gap: 10px; }
.double-input .half { flex: 1; display: flex; align-items: center; gap: 10px; }
.date-input-wrapper { position: relative; flex: 1; }
.date-input-wrapper .form-control { width: 100%; }
.calendar-icon { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); color: #999; }

/* Aspirations Grid */
.aspirations-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; margin-top: 10px; }

/* Checkbox Group */
.checkbox-group { display: flex; justify-content: center; gap: 40px; margin: 20px 0; }
.checkbox-label { display: flex; align-items: center; cursor: pointer; font-size: 14px; }
.checkbox-label input { display: none; }
.custom-checkbox { width: 20px; height: 20px; background-color: #eee; margin-right: 10px; display: flex; justify-content: center; align-items: center; font-weight: bold; font-size: 14px; border: 1px solid #ccc; }
.checkbox-label input:checked + .custom-checkbox { background-color: #ccc; color: #333; }

/* Scores Grid */
.scores-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; }
.scores-grid .form-control::placeholder { color: #333; font-weight: 500; font-size: 13px; }

/* Upload Grid */
.upload-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.upload-item { position: relative; }
.upload-item .form-control { padding-right: 40px; }
.camera-icon { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); color: #00aa4f; font-size: 18px; cursor: pointer; } 

.form-submit-area { text-align: center; margin-top: 40px; padding-bottom: 40px; border-bottom: 1px solid #ddd; }
.btn-submit { background-color: var(--accent-orange); color: white; font-weight: 700; font-size: 14px; padding: 12px 60px; border: none; border-radius: 30px; cursor: pointer; text-transform: uppercase; transition: opacity 0.3s; }
.btn-submit:hover { opacity: 0.9; }

/* Required Mark */
.required-mark {
    color: #ff0000;
    font-weight: bold;
    font-size: 16px;
    margin-right: 2px;
}

/* Error State */
.form-control.error {
    border-color: #ff0000 !important;
    background-color: #fff5f5;
}

.form-control.error:focus {
    border-color: #ff0000 !important;
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
}

/* Alert Info Box */
.alert-info {
    border-radius: 8px;
    animation: fadeIn 0.3s ease-in;
}

.alert-info i {
    margin-right: 8px;
}

/* He Dao Tao Sections */
.he-dao-tao-section {
    animation: fadeIn 0.4s ease-in;
}

.phuong-thuc-section {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* File Input Styling */
input[type="file"].form-control {
    padding: 8px 15px;
    cursor: pointer;
}

input[type="file"].form-control::-webkit-file-upload-button {
    background-color: var(--primary-blue);
    color: white;
    border: none;
    padding: 6px 15px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 13px;
    margin-right: 10px;
}

input[type="file"].form-control::-webkit-file-upload-button:hover {
    opacity: 0.9;
}

