/* Auth Container */
.auth-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

/* Auth Text */
.auth-header {
    margin-bottom: 3.2rem;

    display: flex;
    flex-direction: column;
    align-items: center;

    color: #283078;
    text-align: center;
}

.auth-header p {
    margin: 0;
}

.auth-header__logo {
    width: 11rem;
    height: 11rem;
    border-radius: 2.4rem;

    margin-bottom: 1rem;
}

.auth-header__title {
    margin-bottom: 0.4rem;

    font-size: 2rem;
    line-height: 2.4rem;
    font-weight: 600;
}

.auth-header__subtitle {
    font-size: 1.6rem;
    line-height: 2rem;
}

/* Auth Form */
.auth-form {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.auth-form__title {
    margin-bottom: 1rem;

    color: #8683B0;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 2.4rem;
}

.auth-form__actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.auth-form__actions > * {
    width: 100%;
}

.auth-form__checkboxes {
    margin-bottom: 3.2rem;

    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem
}

/* Registration steps */
.registration-steps {
    width: 100%;
}

.registration-steps__step {
    display: none;
}

.registration-steps--1 .registration-steps__step--1 {
    display: block;
}

.registration-steps--2 .registration-steps__step--2 {
    display: block;
}

/* Setting Up Steps */
.setting-up-steps:not(.active) {
    display: none;
}
