* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: #fce4ec; /* Soft pink background */
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: #333;
}

/* Background animated blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    animation: float 10s infinite ease-in-out alternate;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: #ffb5a7;
    top: -100px;
    left: -100px;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: #c1f0c1; /* Soft green */
    bottom: -150px;
    right: -100px;
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

.container {
    display: flex;
    width: 90%;
    max-width: 1200px;
    gap: 40px;
    z-index: 1;
}

@media (max-width: 900px) {
    .container {
        flex-direction: column;
        padding: 40px 0;
    }
}

/* Glassmorphism Classes */
.glass-card, .glass-form {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

/* Left Side: Product Showcase */
.product-showcase {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.badge {
    background: linear-gradient(135deg, #ff7eb3, #ff758c);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #2d3436;
}

h1 span {
    color: #ff4757;
    font-weight: 800;
}

.product-showcase p {
    font-size: 1.1rem;
    color: #636e72;
    margin-bottom: 30px;
    line-height: 1.6;
}

.benefits {
    list-style: none;
}

.benefits li {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

/* Right Side: Form */
.form-container {
    flex: 0.8;
    display: flex;
    align-items: center;
}

.glass-form {
    width: 100%;
    background: rgba(255, 255, 255, 0.6);
}

.glass-form h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #2d3436;
}

.glass-form p {
    color: #636e72;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

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

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2d3436;
    font-size: 0.9rem;
}

.input-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

.input-group input:focus {
    border-color: #ff758c;
    background: white;
    box-shadow: 0 5px 15px rgba(255, 117, 140, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #ff758c, #ff7eb3);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 117, 140, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.hidden {
    display: none !important;
}

#successMessage {
    background: #d4edda;
    color: #155724;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    border: 1px solid #c3e6cb;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
