body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #000000;
    color: #ffffff;
    margin: 0;
    padding: 20px;
    min-height: 100vh;
    box-sizing: border-box;
}

.feedback-container,
.form-container,
.error-container {
    text-align: center;
    background: #000000;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    padding: 20px;
    width: 90%;
    max-width: 500px;
    margin-top: 20px;
}

.logo-container {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

.logo-container img {
    max-width: 80%;
    height: auto;
    margin-bottom: 20px;
}

button {
    font-size: 1.2rem;
    padding: 15px 30px;
    margin: 10px;
    cursor: pointer;
    border: none;
    border-radius: 10px;
    transition: transform 0.2s, background-color 0.3s;
    width: auto;
}

button:hover {
    transform: scale(1.1);
    background-color: #F7BD01;
}

input[type="text"],
input[type="password"],
input[type="number"] {
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-family: Arial, sans-serif;
    width: 100%;
    box-sizing: border-box;
}

select {
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-family: Arial, sans-serif;
    width: 100%;
    box-sizing: border-box;
}

label {
    margin-bottom: 10px;
    font-size: 1rem;
    display: block;
}

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

.form-button {
    background-color: #F7BD01;
    color: #000;
}

.confirm-button {
    background-color: #F7BD01;
    color: #000;
}

.skip-button {
    background-color: #F7BD01;
    color: #000;
}

.logout-button {
    background-color: #F7BD01;
    color: #000;
}

.error-message {
    color: #ff4c4c;
    font-size: 1.2rem;
    margin-top: 10px;
}