* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
    background: radial-gradient(circle at 20% 20%, #1e3a8a, #020617);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: white;
}

.container {
    width: 100%;
    max-width: 1150px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 22px;
    padding: 35px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.left h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.left p {
    opacity: .85;
    line-height: 1.6;
    margin-bottom: 20px;
}

.info-box {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px;
    border-radius: 12px;
    margin-bottom: 12px;
    font-size: 14px;
}

.form-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-box h2 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
}

.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 16px;
}

label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    opacity: .9;
}

input, select, textarea {
    width: 100%;
    padding: 13px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.07);
    color: white;
    font-size: 14px;
    outline: none;
}

textarea {
    resize: none;
    height: 80px;
}

input::placeholder, textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

select option {
    color: black;
}

button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: .3s;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.success {
    display: none;
    margin-top: 15px;
    padding: 12px;
    border-radius: 10px;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.4);
}

.summary {
    display: none;
    margin-top: 15px;
    padding: 15px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    line-height: 1.6;
}

/* Responsiveness */
@media (max-width: 900px) {
    .container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 500px) {
    .left h1 {
        font-size: 24px;
    }
    .container {
        padding: 20px;
    }
}