/* --- Glassmorphism Base Styles --- */
body {
    font-family: 'Montserrat', sans-serif;
    color: #1a1a1a;
    /* Dynamic Gradient Background is crucial for the glass effect */
    background: linear-gradient(135deg, #1e90ff, #50c4aa, #ff4500); 
    background-size: 300% 300%;
    animation: gradient-animation 15s ease infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 30px 0;
}

@keyframes gradient-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* The Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.25); /* Semi-transparent white */
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.4); /* Light border defines the glass edge */
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    /* THE KEY GLASSMOPHISM EFFECT */
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
    padding: 40px;
    max-width: 1100px;
    width: 95%;
    color: white; /* Text color inside the glass card */
}

/* Text and Accent Colors */
.glass-card h1, .glass-card h2, .glass-card h3 {
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4); /* Subtle shadow for readability */
}
.text-accent {
    color: #f7e09e; /* Gold/yellow accent for highlights */
}

/* Input Fields (Clean white look on the glass) */
.form-control, .form-select, .form-control:focus, .form-select:focus {
    background: rgba(255, 255, 255, 0.9); /* Opaque white background for readability */
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    color: #1a1a1a; /* Dark text in fields */
    box-shadow: none;
}
.form-control::placeholder {
    color: #888;
}

/* Button */
.btn-glass {
    background: linear-gradient(90deg, #abc6ff, #3c33ff); /* Coral to Magenta */
    border: none;
    color: #ffffff; /* White text for contrast */
    font-weight: 700;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(255, 51, 102, 0.5); /* Rose shadow */
    transition: all 0.3s ease;
}
.btn-glass:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgb(114 103 103 / 78%);
    background: linear-gradient(90deg, #e3d9d9, #1bace1);
    color: #ffffff;
}

/* Logo and Header */
.logo-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 1.2rem;
    color: #1e90ff; /* Use the deepest background color */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}
.header-area {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 15px;
    margin-bottom: 25px;
}

@media (min-width: 1200px) {
    .h2, h2 {
        font-size: 1.6rem !important;
    }
}