.accordion-section.active i {
    transform: rotate(90deg);
}

.register {
    height: auto !important;
}
.left {
    padding-right: 15px;
}
.right {
    padding-left: 15px;
}
.alert-danger {
    color: red;
}
.accordion {
    display: flex;
    flex-direction: column;
    position: relative;
}
.accordion i {
    position: absolute;
    right: 9px;
}

.accordion-section {
    border: 1px solid #ccc;
    margin-bottom: 10px;
}

.accordion-toggle {
    padding: 15px;
    cursor: pointer;
    text-align: left;
    font-weight: bold;
    margin: 0;
    border-radius: 8px;
    font-size: 14px;
}

.accordion-content {
    display: none;
    padding: 10px;
    overflow: hidden;
}

/* Show content when toggle is clicked */
.accordion-section.active .accordion-content {
    display: block;
}
