body {
    background: linear-gradient(135deg, #9aa8e7 0%, #764ba2 100%);
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.main-container {
    width: 95%;
    max-width: 750px;
    animation: fadeIn 0.8s ease-in-out; 
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-card h2 {
    font-size: 30px;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 10px;
    text-align: center;
    background: linear-gradient(to right, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 28px;
}

.input-group { margin-bottom: 22px; }

.input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #504f4f;
    font-size: 14px;
    margin-left: 5px;
}

.input-group input, .input-group select, .input-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #eef0f2;
    border-radius: 14px;
    font-size: 16px;
    background: #e4ebf5;
    box-sizing: border-box;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}

/* Jab Cursor andar jaye (Ultimate Transformation) */
.input-group input:focus, .input-group textarea:focus {
    border-color: #667eea;
    outline: none;
    background: #fff;
    transform: translateY(-3px); 
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.15);
}

/* Button Layout - Exactly like Image 1 */
.actions-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
    align-items: center;
}

.action-row {
    display: flex;
    gap: 200px;
    justify-content: center;
    width: 100%;
}

.action-btn, .home-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 14px 0;
    width: 180px; 
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 8px 15px rgba(118, 75, 162, 0.3);
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
}

.action-btn:hover, .home-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 20px rgba(118, 75, 162, 0.4);
}