body {
    font-family: Arial, sans-serif;
    background-color: #10122b;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: white;
}

.logo {
    position: absolute;
    top: 20px;
    left: 20px;
}

.logo img {
    width: 60px;
    height: auto;
}

.container {
    background-color: #1e1f3f;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 400px;
    transform: scale(0.95);
    animation: scaleUp 0.3s forwards;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

p {
    text-decoration: none;
    color: #bebebe;
}

a {
    text-decoration: none;
    color: goldenrod;
}

.question {
    display: none;
    animation: fadeIn 0.5s forwards;
}

.question.active {
    display: block;
}

input[type="text"], input[type="email"], textarea, select {
    width: 100%;
    padding: 12px 0px;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #4CAF50;
    background-color: #2c3e50;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    text-indent: 20px;
}

input[type="text"]:focus, input[type="email"]:focus, textarea:focus, select:focus {
    border-color: #1abc9c;
    background-color: #34495e;
    outline: none;
}

textarea {
    resize: none;
    height: 120px;
    text-align: left;
    text-indent: 0px;
    padding-left: 20px;
}




button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #45a049;
}

.submit-btn {
    background-color: #008CBA;
}

.submit-btn:hover {
    background-color: #006F8C;
}

.buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    gap: 25px;
}

button:disabled {
    background-color: #555;
    cursor: not-allowed;
}

/* Animation for the scale of the form */
@keyframes scaleUp {
    from {
        transform: scale(0.95);
    }
    to {
        transform: scale(1);
    }
}

/* Fade-in effect for each question */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
