body {
    background: linear-gradient(45deg, #1c892a 0%, #059da5 100%);
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.acaforlogo {
    padding: auto;
    vertical-align: top;
    text-align: left;
    margin: 10px 35px;
    color: #ffffff;
    font-size: 400%;
    font-weight: bolder;
}

.logint {
    padding: 30px 50px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 300px;
    font-weight: bold;
    align-items: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.container {
    display: none;
    width: 80%;
    max-width: 800px;
    margin: 50px auto;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.section {
    display: none;
    padding: 20px;
    border-radius: 5px;
}

.section.active {
    display: block;
}

.navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

button {
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.question {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 5px;
}

.options {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border-top: 2px solid #ccc;
    padding-top: 10px;
}

.options label {
    display: flex;
    align-items: center;
    justify-content: center;
}


.question:nth-child(even) {
    background-color: #f2f2f2;
}

.question:nth-child(odd) {
    background-color: #ffffff;
}