/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Basier Circle", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f4f4f4;
    color: #2f2f2f;
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
}

/* Main Content */
.main-content {
    flex-grow: 1;
    padding: 40px;
}

.content-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.page-title {
    font-size: 32px;
    font-weight: 600;
    color: #2f2f2f;
    margin-bottom: 8px;
}


.section-title {
    font-size: 24px;
    font-weight: 600;
    color: #2f2f2f;
    margin: 32px 0 16px;
}

.description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 800px;
}

/* School Info Card */
.school-info-card {
    background: white;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 32px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 600px;
}

.school-info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.school-info-label {
    color: #666;
    font-size: 16px;
}

.school-info-value {
    color: #2f2f2f;
    font-size: 16px;
    font-weight: 500;
}

/* Form Styles */
.form-container {
    background: white;
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 600px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    color: #2f2f2f;
    font-size: 16px;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-input:focus {
    border-color: #f78817;
    outline: none;
}

.form-select {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 16px;
    background-color: white;
    cursor: pointer;
    transition: border-color 0.3s;
}

.form-select:focus {
    border-color: #f78817;
    outline: none;
}

.submit-button {
    background-color: #f78817;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #e67a00;
}

.back-button {
    background-color: #666;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-right: 16px;
}

.back-button:hover {
    background-color: #555;
}

.back-button i {
    font-size: 20px;
}

.button-group {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}


/* Responsive */
@media (max-width: 768px) {
    .content-container {
        width: 95%;
        padding: 1rem 0;
    }

    .main-content {
        padding: 20px;
    }
}