:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #64748b;
    --background: #f8fafc;
    --white: #ffffff;
    --error: #ef4444;
    --formname: #cc0300;
    --success: #10b981;
    --text: #1e293b;
    --radius: 12px;
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 600px;
}

.form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.header {
    text-align: center;
    margin-bottom: 30px;
}

.logo {
    width: 120px;
    height: auto;
    margin-bottom: 15px;
    border-radius: 15px;
}

h1 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-info {
    margin-bottom: 20px;
}

.header-info p {
    color: var(--secondary);
    font-size: 13px;
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.session-badge {
    background: #e0e7ff;
    color: var(--formname);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    display: inline-block;
    text-transform: uppercase;
}

.form-section {
    margin-bottom: 30px;
}

.form-section h3 {
    font-size: 18px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.input-group {
    margin-bottom: 20px;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 480px) {
    .input-row {
        grid-template-columns: 1fr;
    }
}

label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

input[type="text"],
input[type="tel"],
select {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius);
    border: 1px solid #e2e8f0;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #f8fafc;
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
    background: var(--white);
}

.radio-group {
    display: flex;
    gap: 15px;
    padding: 10px 0;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    cursor: pointer;
}

.radio-vertical {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio-card:hover {
    border-color: var(--primary);
    background: #f5f3ff;
}

.radio-card input[type="radio"] {
    width: 20px;
    height: 20px;
}

.radio-card .title {
    display: block;
    font-weight: 600;
    font-size: 15px;
}

.radio-card .desc {
    display: block;
    font-size: 12px;
    color: var(--secondary);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.checkbox-group input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.fee-display {
    background: #eef2ff;
    padding: 15px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--primary-dark);
}

#feeAmount {
    font-size: 20px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.status-message {
    margin-top: 25px;
    padding: 25px;
    border-radius: 16px;
    display: none;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeIn 0.5s ease-out;
}

.status-content i {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.status-content h4 {
    margin: 0 0 10px 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.status-content p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.5;
}

.status-message.success {
    background: linear-gradient(135deg, rgba(46, 213, 115, 0.2), rgba(39, 174, 96, 0.3));
    color: #2ed573;
    border-color: rgba(46, 213, 115, 0.4);
    display: block;
}

.status-message.info {
    background: rgba(84, 160, 255, 0.1);
    color: #54a0ff;
    display: block;
}

.status-message.error {
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
    display: block;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-card {
    animation: fadeIn 0.6s ease-out;
}