.ac-container {
    width: 1200px !important;
    max-width: 100% !important;
}


.ac-container .ac-loading {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.ac-container .ac-loading .ac-loading-spinner {
    display: inline-block;
    width: 72px;
    height: 72px;
}

.ac-container .ac-loading .ac-loading-spinner:after {
    content: " ";
    display: block;
    width: 44px;
    height: 44px;
    margin: 6px;
    border-radius: 50%;
    border: 8px solid var(--ac-color);
    border-color: var(--ac-color) transparent var(--ac-color) transparent;
    animation: ac-loading-spinner 1.2s linear infinite;
}

@keyframes ac-loading-spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.ac-loading img {
    height: 90px;
}

.ac-input {
    background-color: #ffffff;
    border: 2px solid #F2F2F2;
    padding: 12px 8px;
    outline: none;
    width: 100%;
    border-radius: 6px;
    box-sizing: border-box;
    margin-top: 10px;
}

.ac-input-error {
    background-color: rgb(249, 236, 236);
    border: 2px solid red;
}

.ac-form-page {
    padding: 40px;
}

.ac-login-container {
    border-radius: 20px;
    background-color: var(--ac-color-contrast);
    border: 1px solid var(--ac-color-opacity);
}

.ac-form-container {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 20px;
    margin-top: 20px;
}

.ac-form-box {
    display: flex;
    flex-direction: column;
}

.ac-inputline {
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: space-between;
}

.ac-button {
    text-decoration: none;
    /* no underline */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--ac-color);
    color: var(--ac-color-contrast);
    text-align: center;
    font-size: 18px;
    padding: 8px 20px;
    border: 0;
    cursor: pointer;
    border-radius: 6px;
    width: fit-content;
    margin-top: 10px;
}

.ac-page-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.form-button-row {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: end;
    margin-top: 20px;
}

.ac-form-body {
    padding-left: 20%;
    padding-right: 20%;
}

.ac-row{
    display: flex;
    flex-direction: row;
    width: 100%;
    gap:20px
}

.ac-side-containers{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    width: 50%;
    text-align: center;
}

.ac-title{
    font-size: larger;
    font-weight: bolder;
}

.ac-description{
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.error {
    color: red;
    font-size: 1.5rem;
    font-weight: 800;
    margin-top: 10px;
    text-align: center;
}

.hidden {
    display: none !important;
}

.flex-col-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.ac-response-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ac-response-title {
    font-size: larger;
    font-weight: 800;
}

.ac-response-subtitle {
    font-weight: 800;
}


@media (max-width: 600px) {
    .ac-inputline {
        flex-direction: column;
    }

    .pointer {
        width: 100%;
    }

    .breadcrumb-form {
        flex-direction: column;
    }

    .ac-form-body {
        padding-left: 20px;
        padding-right: 20px;
    }

    .ac-form-checkbox-list {
        flex-direction: column;
        gap: 0px;
    }
    .ac-row{
        flex-direction: column;
    }
    .ac-side-containers{
        width: 100%;
    }
}

@media (min-width: 601px) and (max-width: 860px) {
    .ac-inputline {
        flex-direction: column;
    }

    .pointer {
        width: 100%;
    }

    .breadcrumb-form {
        flex-direction: column;
    }

    .ac-form-body {
        padding-left: 20px;
        padding-right: 20px;
    }

    .ac-form-checkbox-list {
        flex-direction: column;
        gap: 0px;
    }
    .ac-row{
        flex-direction: column;
    }
    .ac-side-containers{
        width: 100%;
    }
}