/* General Styling */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #1f1c2c, #928dab);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.container {
    text-align: center;
    background: linear-gradient(145deg, #1e1e1e, #2d2d2d);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5), 0 -10px 20px rgba(255, 255, 255, 0.05);
    max-width: 400px;
    width: 90%;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1 {
    font-size: 2.5em;
    color: #00e0ff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

p {
    font-size: 1.2em;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #ddd;
}

/* Styling for Form Inputs */
form div {
    margin-bottom: 15px;
    text-align: left;
}

label {
    font-size: 1em;
    color: #ccc;
    margin-bottom: 5px;
    display: block;
}

input[type="email"],
input[type="text"],
select {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    border: 1px solid #333;
    border-radius: 5px;
    background-color: #2b2b2b;
    color: #fff;
    font-size: 1em;
    outline: none;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

input[type="email"]:focus,
input[type="text"]:focus,
select:focus {
    border-color: #00e0ff;
    box-shadow: 0 0 8px rgba(0, 224, 255, 0.8);
}

::placeholder {
    color: #aaa;
    font-style: italic;
}

/* Styling for Select Dropdown */
select {
    appearance: none;
    background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns%3D%22http%3A//www.w3.org/2000/svg%22 viewBox%3D%220 0 4 5%22%3E%3Cpath fill%3D%22%23fff%22 d%3D%22M2 0L0 2h4zm0 5L0 3h4z%22/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    cursor: pointer;
}

/* Styling for Buttons */
button {
    background: linear-gradient(145deg, #00e0ff, #0094cc);
    color: #fff;
    font-size: 1.2em;
    font-weight: bold;
    padding: 12px 20px;
    margin-top: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

button:hover {
    background: linear-gradient(145deg, #0094cc, #006c99);
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 224, 255, 0.5);
}

button:active {
    transform: scale(0.98);
    box-shadow: none;
}

/* Styling for Questions and Answers */
.question h2 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #00e0ff;
}

.question p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.5;
}

.answers label {
    display: block;
    margin-bottom: 15px;
    font-size: 1em;
    color: #ccc;
    cursor: pointer;
    padding: 8px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.answers input[type="radio"] {
    margin-right: 10px;
}

.answers label:hover {
    color: #fff;
    background-color: #00e0ff;
}

/* Navigation Buttons */
.navigation {
    margin-top: 20px;
    text-align: center;
}

.navigation .btn {
    background: linear-gradient(145deg, #00e0ff, #0094cc);
    color: #fff;
    font-size: 1.2em;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.navigation .btn:hover {
    background: linear-gradient(145deg, #0094cc, #006c99);
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 224, 255, 0.5);
}
