/* Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Body and HTML */
body, html {
    height: 100%;
    font-family: 'SF Pro Display', sans-serif;
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
    color: white;
    display: flex;
    flex-direction: column;
}

/* Wrapper */
.wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px 40px;
    gap: 40px;
    width: 100%;
}

/* Hero Text */
.hero-text {
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 600px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Form Container */
.container {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

/* Logo */
.logo {
    width: 90px;
    margin-bottom: 20px;
}

/* Heading */
h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
}

/* Input Fields */
.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.4);
    color: white;
    font-size: 17px;
    outline: none;
    font-weight: 500;
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

/* Button Styling */
button {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Links */
.links {
    margin-top: 20px;
    font-size: 15px;
}

.links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.links a:hover {
    text-decoration: underline;
}

/* Dropdown Styling */
.input-group select {
    appearance: none;
    cursor: pointer;
}

/* Dropdown Options */
.input-group select option {
    background: rgba(0, 0, 0, 0.8);
    color: white;
}

/* Footer */
footer {
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
    padding: 20px;
    font-size: 14px;
    position: relative;
    z-index: 2;
}

/* Media Queries */
@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 20px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        font-size: 0.9rem;
    }

    .hero-text h1 {
        font-size: 1.6rem;
    }

    .hero-text p {
        font-size: 0.9rem;
    }
}
.success {
    color: #4BB543;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}

.error {
    color: #FF3333;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}