body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #fff;
}


/* Glassmorphism Container */

.container {
    max-width: 650px;
    margin: 80px auto;
    padding: 32px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}


/* Headings */

h1 {
    margin-top: 0;
    text-align: center;
    font-size: 32px;
    font-weight: 600;
}

.muted {
    text-align: center;
    opacity: 0.75;
    margin-bottom: 28px;
}


/* Form Row */

.form-row {
    margin-bottom: 20px;
    display: flex;
    gap: 14px;
    justify-content: center;
}


/*   Textarea Styling */

.input {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 15px;
    outline: none;
    resize: vertical;
}

.input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}


/* Select Menu */

select {
    padding: 12px 18px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 15px;
    cursor: pointer;
    outline: none;
}

select option {
    color: black;
}


/* Buttons */

.btn {
    padding: 12px 22px;
    background: rgba(0, 132, 255, 0.55);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    font-size: 16px;
    color: #fff;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn:hover {
    background: rgba(0, 132, 255, 0.75);
    transform: translateY(-2px);
}