:root {
    --primary: #004c97;
    /* JNTU Blue */
    --primary-dark: #003366;
    --accent: #f39c12;
    /* Gold */
    --bg-light: #f5f7fb;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-muted: #666;
    --radius: 8px;
    --success: #2ecc71;
    --error: #e74c3c;
    --font-main: 'Segoe UI', system-ui, sans-serif;
    --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.08);
}

body {
    margin: 0;
    background: var(--bg-light);
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
}

.page {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Card Container */
.card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    border-top: 5px solid var(--primary);
}

/* Header */
.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.header-logo img {
    height: 70px;
}

.header-title h1 {
    color: var(--primary);
    margin: 0;
    font-size: 1.8rem;
}

.header-title h2 {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 5px;
}

/* Info Banner */
.info-banner {
    background: #fff8e6;
    border-left: 4px solid var(--accent);
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 30px;
    display: flex;
    gap: 15px;
}

.banner-icon {
    font-size: 24px;
}

/* Form Elements */
.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-dark);
}

.required {
    color: var(--error);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #dce0e4;
    border-radius: var(--radius);
    font-size: 1rem;
    box-sizing: border-box;
    transition: all 0.2s;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 76, 151, 0.1);
}

/* Buttons */
.btn-primary {
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-bar {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 30px;
}

/* Steps */
.steps {
    display: flex;
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    background: #f1f5f9;
    border-radius: 50px;
    padding: 5px;
}

.steps li {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 50px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.steps li.active {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-weight: 700;
}

/* Status Check Page */
.status-result {
    margin-top: 30px;
    padding: 20px;
    background: #f0f9ff;
    border-radius: var(--radius);
    border: 1px solid #bae6fd;
    text-align: center;
}

.status-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    text-transform: capitalize;
    font-size: 0.9rem;
    margin: 10px 0;
}

.status-badge.submitted {
    background: #dcfce7;
    color: #166534;
}

.status-badge.payment_pending {
    background: #ffedd5;
    color: #9a3412;
}

.status-badge.accepted {
    background: #dcfce7;
    color: #15803d;
}

.status-badge.rejected {
    background: #fee2e2;
    color: #991b1b;
}

.status-badge.draft {
    background: #e5e7eb;
    color: #374151;
}

@media (max-width: 600px) {
    .header-row {
        flex-direction: column;
        text-align: center;
    }

    .card {
        padding: 20px;
    }
}

/* .caution {
    background: #fff8e6;
    border-left: 4px solid var(--accent);
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 30px;
    display: flex;
    gap: 15px;
} */