/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background Image Transition */
.background {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-image {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

#bg1 { background-image: url('../image/say.jpg'); opacity: 1; }
#bg2 { background-image: url('../image/vision.jpg'); }
#bg3 { background-image: url('../image/Mission.jpg'); }

/* Glassmorphism Container */
.container {
    position: relative;
    width: 350px;
    padding: 20px;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0);
    text-align: center;
    color: white;
}

h2 {
    margin-bottom: 20px;
}

input, select, button {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: none;
    border-radius: 8px;
    font-size: 16px;
}

input, select {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

button {
    background: #bba456;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

button:hover {
    background: #bba456;
}

/* New Gender Options Styling */
.gender-options {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    margin: 8px 0;
}

.gender-options input[type="radio"] {
    width: auto;
    margin-right: 5px;
    cursor: pointer;
}

.gender-option {
    display: flex;
    align-items: center;
    padding: 0 10px;
}