/* General Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    background-color: #0f172a; /* Dark navy professional background */
    color: #f8fafc;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Registration Card */
.registration-container {
    background: #1e293b;
    width: 100%;
    max-width: 450px;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid #334155;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #fbbf24; /* Golden yellow for tickets */
    text-align: center;
}

p {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.5;
}

/* Form Styling */
#ticketForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

input {
    background: #0f172a;
    border: 1px solid #334155;
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus {
    outline: none;
    border-color: #fbbf24;
    box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.2);
}

/* Submit Button */
#payBtn {
    background: #fbbf24;
    color: #0f172a;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
    margin-top: 10px;
}

#payBtn:hover {
    background: #f59e0b;
    transform: translateY(-2px);
}

#payBtn:active {
    transform: translateY(0);
}

/* Success Page Specifics (for success.html later) */
.success-card {
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    color: #22c55e;
    margin-bottom: 20px;
}
