@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body,
html {
    height: 100%;
    font-family: "Poppins", sans-serif;
    background: url("../bg.jpg") no-repeat center center fixed;
    background-size: cover;
    color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    overflow-x: hidden;
    background-blend-mode: multiply;
    background-color: rgba(10, 10, 20, 0.75);
}
.container {
    background: linear-gradient(135deg, rgba(15, 15, 30, 0.9), rgba(25, 25, 45, 0.85));
    padding: 40px 50px;
    border-radius: 20px;
    max-width: 620px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 150, 255, 0.2), 0 0 60px rgba(0, 150, 255, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.4);
    color: #d9e9ff;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
    from {
        opacity: 0;
        transform: translateY(30px);
    }
}
h1,
h2 {
    font-weight: 700;
    text-shadow: 0 0 5px rgba(0, 150, 255, 0.9), 0 0 15px rgba(0, 150, 255, 0.7);
    margin-bottom: 20px;
    letter-spacing: 1.1px;
}
p {
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #a9caff;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}
button {
    background: linear-gradient(135deg, #00aaff, #004d99);
    border: none;
    border-radius: 50px;
    padding: 14px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 170, 255, 0.6), 0 0 12px rgba(0, 170, 255, 0.7);
    transition: all 0.3s ease;
    user-select: none;
    letter-spacing: 1px;
    text-transform: uppercase;
}
button:hover {
    background: linear-gradient(135deg, #00d0ff, #0066cc);
    box-shadow: 0 6px 25px rgba(0, 208, 255, 0.85), 0 0 20px rgba(0, 208, 255, 0.9);
    transform: translateY(-3px);
}
button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(0, 170, 255, 0.7), 0 0 10px rgba(0, 170, 255, 0.8);
}
.contact-info {
    margin-top: 40px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #8ab9ff;
    text-shadow: 0 0 3px rgba(0, 150, 255, 0.6);
    user-select: text;
}
.question,
.answers {
    margin-bottom: 30px;
}
.question {
    font-size: 1.4rem;
    font-weight: 600;
    color: #a3d1ff;
    text-shadow: 0 0 6px #0077ff99;
    margin-bottom: 25px;
}
.answers button {
    display: block;
    width: 100%;
    margin: 10px 0;
    background: linear-gradient(135deg, #0077ffcc, #004080cc);
    box-shadow: 0 3px 10px rgba(0, 119, 255, 0.6);
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 12px;
    padding: 12px 18px;
    color: #cce4ff;
    text-align: left;
    transition: all 0.25s ease;
}
.answers button:hover {
    background: linear-gradient(135deg, #00aaffee, #0066ccee);
    box-shadow: 0 6px 20px rgba(0, 170, 255, 0.8);
    color: #fff;
    transform: scale(1.04);
}
form {
    text-align: left;
    margin-top: 20px;
    color: #c0d9ff;
}
label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    text-shadow: 0 0 4px rgba(0, 150, 255, 0.7);
}
input[type="text"],
input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: 10px;
    border: none;
    font-size: 1rem;
    font-weight: 400;
    background: rgba(0, 50, 100, 0.4);
    color: #e0eaff;
    box-shadow: inset 0 0 8px rgba(0, 150, 255, 0.7);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
input[type="text"]:focus,
input[type="email"]:focus {
    outline: none;
    background: rgba(0, 80, 150, 0.8);
    box-shadow: 0 0 12px 3px rgba(0, 190, 255, 0.8);
    color: #fff;
}
input[type="checkbox"] {
    margin-right: 10px;
    accent-color: #0099ff;
    cursor: pointer;
}
.checkbox-label {
    font-size: 0.95rem;
    color: #a8c9ff;
    user-select: none;
    text-shadow: 0 0 3px rgba(0, 150, 255, 0.5);
}
.checkbox-label a {
    color: #88bbff;
    text-decoration: underline;
    transition: color 0.3s ease;
}
.checkbox-label a:hover {
    color: #00c3ff;
}
.thank-you {
    margin-top: 20px;
}
