 @import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Roboto:wght@400;700&display=swap');
 body {
        font-family: 'Roboto', sans-serif;
        background: #f8f9fc;
        margin: 0;
        padding: 0;
    }
    .container {
        max-width: 45%;
        margin: 60px auto;
        background: #fff;
        padding: 2rem;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 6px 18px rgba(0,0,0,0.1);
        background-color: ##d6ffdf;
    }
    
    input {
        width: 100%;
        padding: 10px;
        border-radius: 8px;
        border: 1px solid #ccc;
        margin-bottom: 12px;
        font-size: 1rem;
    }
    
    label {
        font-weight: 600;
        margin-bottom: 5px;
        display: block;
    }
    
    .btn {
        width: auto;
        padding: 1.4rem;
        border: none;
        font-size: 1.4rem;
        border-radius: 6px;
        cursor: pointer;
        color: white;
        margin: 1rem;
    }
    .yes-btn { background: #28a745; }
    .no-btn { background: #dc3545; }

    .party-title {
        font-family: 'Pacifico', cursive;
        font-size: 2.4rem;
        margin-bottom: 1rem;
        color: #ff4d6d;
        margin-top: 0;
    }
    
    .subtitle {
        line-height: 1.6;
        color: #2a2a2a;
    }

    .button-row {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
    }

    .error-msg {
        color: #d93025;
        font-size: 1.2rem;
        margin-top: 10px;
        display: none;
    }

    .btn i {
        margin-right: 8px;
        font-size: 1.2rem;
    }
    
    
    /* YES Form Stylish Card */
.yes-form-card {
    margin-top: 25px;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    animation: fadeIn 0.8s ease-out;
    backdrop-filter: blur(8px);
}

/* Title */
.form-title {
    font-size: 1.6rem;
    color: #ff6b6b;
    font-weight: 700;
    margin-bottom: 5px;
    text-align: center;
}

/* Subtitle */
.form-subtitle {
    font-size: 1rem;
    color: #444;
    margin-bottom: 20px;
    text-align: center;
}

/* Input group */
.input-group {
    margin-bottom: 15px;
}

.input-group label {
    font-weight: 600;
    color: #555;
    display: block;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.input-group i {
    color: #ff6b6b;
    margin-right: 5px;
}

/* Inputs */

.yes-form-card {
    background-color: #f1f1f1;
    box-shadow: 3px 5px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.yes-form-card input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.yes-form-card input:focus {
    border-color: #ff6b6b;
    box-shadow: 0 0 8px rgba(255, 107, 107, 0.3);
}

.yes-form-card .input-group {
    display: flex;
    align-items: center;
}

.yes-form-card label {
    width: 45%;
    flex:1;
    text-align: left;
}

.yes-form-card input {
    width: 53%;
    flex:1;
    box-sizing: border-box;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 14px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(135deg, #ff6b6b, #ff3b3b);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 5px;
    transition: 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.25);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(255, 0, 0, 0.35);
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}
    
    
    .thanks-wrapper {
        background: linear-gradient(135deg, #fceabb, #f8b500);
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
    }

    .thanks-wrapper .container {
        background: #fff;
        border-radius: 20px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        padding: 40px;
        text-align: center;
        max-width: 500px;
        animation: fadeIn 1s ease-out;
    }

    .thanks-wrapper h2 {
        font-family: 'Pacifico', cursive;
        font-size: 2.2rem;
        color: #ff6b6b;
        margin-bottom: 20px;
        animation: popIn 0.8s ease-out;
    }

    .thanks-wrapper p {
        font-size: 1.2rem;
        color: #333;
        margin-bottom: 30px;
    }

    .thanks-wrapper .response {
        font-weight: bold;
        color: #ff6b6b;
        font-size: 1.5rem;
    }

    .thanks-wrapper .btn {
        display: inline-block;
        padding: 12px 30px;
        background: #ff6b6b;
        color: #fff;
        text-decoration: none;
        border-radius: 50px;
        transition: 0.3s;
        font-weight: 700;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .thanks-wrapper .btn:hover {
        background: #ff3b3b;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }

    @keyframes fadeIn {
        from {opacity: 0; transform: translateY(-20px);}
        to {opacity: 1; transform: translateY(0);}
    }

    @keyframes popIn {
        0% {transform: scale(0.5);}
        80% {transform: scale(1.1);}
        100% {transform: scale(1);}
    }
    
    
    /*media starts to here*/

    @media only screen and (max-width: 1024px) {
        .container {
            max-width: 94%;
            margin: 30px auto;
            margin-right: 15px;
            margin-left: 15px;
        }
        
        .btn {
            font-size: 1rem;
            margin: 0;
            padding: 1rem;
        }
        .btn i {
        margin-right: 4px;
        font-size: 1rem;
        }
        
        .party-title {
            
            font-size: 2rem;
        }
    }
     @media only screen and (max-width: 767px) {
        .thanks-wrapper .container {
            max-width:75%;
            padding:20px;
        }
        
        .yes-form-card .input-group {
            display: block;
        }
        
        .yes-form-card label {
            width: 100%;
        }
        
        .yes-form-card input {
            width: 100%;
        }
    }