.main-inner {
    background-color: var(--primary-bg-color);
}

.auth-form {
	margin: 0 auto 3.5rem;
	background-color: #fff;
	box-shadow: 0.375rem 0.4375rem 1.25rem rgb(0 0 0 / 10%);
	padding: 5%;
}

.auth-form .form-btn {
    justify-content: center;
}

.auth-form:not(.sign-up-form) {
    max-width: 600px;
}

.section-forgot-password {
	display: none;
}


.section-confirm-fields .form-field .form-field-label {
    opacity: 1;
    visibility: visible;
    transform: none;
    left: -3rem;
}

.section-confirm-fields .form-field .form-field-input {
    color: var(--placeholder-color);
    width: calc(100% - 125px);
    margin-left: 125px;
}

@media (min-width: 1200px) {
    .section-confirm-fields .row > .col-12:first-child .form-field .form-field-label {
        left: -1rem;
    }

    .section-confirm-fields .row > .col-12:first-child .form-field .form-field-input {
        margin-left: 75px;
    }
}

.form-field .form-field-input[disabled] {
    cursor: not-allowed;
}

#confirm-actions {
    position: relative;
    padding-top: 5rem;
}

#confirm-actions .confirm-btn-wrp {
    text-align: center;
}

.agreements-wrp {
    max-width: 300px;
    margin: 10px auto 0;
    padding: 10px 15px;
}

.agreements {
    padding: 10px 15px;
    border-radius: 20px;
    background-color: #fff;
}

.agreements label {
    cursor: pointer;
    margin: 0;
    font-weight: bold;
}

.agreements:not(.not-checked) label {
    color: var(--main-color);
}

.agreements input {
    margin-right: 5px;
}

.agreements-pages {
    margin: 15px 0 0;
}

.agreements:not(.not-checked) .agreements-pages {
    display: none;
}

.agreements-pages li::marker {
    color: red;
}

.agreements-pages a {
    text-decoration: none;
}

.success-message {
    color: green;
    text-align: center;
}

.error-message {
    color: red;
}

.google-signin-container {
    height: 59px;
    overflow: hidden;
    margin-left: -10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.g_id_signin {
    min-height: 42px;
    margin-bottom: 15px;
}
.g_id_signin [role="button"] {
    margin: 2px auto;
}
.g_id_signin iframe {
    margin: 0 auto !important;
}

.google-signin-or {
    position: relative;
    text-align: center;
    margin-bottom: 25px;
}
.google-signin-or span {
    position: relative;
    color: #777;
    padding: 12px;
    background-color: #fff;
    z-index: 1;
}
.google-signin-or:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin-top: -1px;
    height: 1px;
    background-color: #ddd;
}

#sign-up-form-completion {
    position: relative;
}
#sign-up-form-completion.processing:after {
    content: '';
    cursor: wait;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fff;
    opacity: 0.3;
    z-index: 99;
}