.accordion {
    margin-bottom: 10px;
}

.accordion-toggle {
    background-color: #f1f1f1;
    border: none;
    cursor: pointer;
    padding: 10px 15px;
    text-align: left;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-toggle.active,
.accordion-toggle:hover {
    background-color: #ddd;
}

.accordion-content {
    padding: 15px;
    background-color: white;
    display: none;
    border-top: 1px solid #ccc;
}

.toggle-icon {
    font-size: 18px;
    margin-left: auto;
}

.toggle-icon.active {
    transform: rotate(45deg);
    /* Changes + to x */
}

.auth-fields {
    margin-top: 10px;
}