.auth-page {
  overflow: hidden;
}
.auth-page__columns {
    align-items: flex-start;
    justify-content: space-between;
}
.auth-page__visual {
  position: relative;
  min-height: 240px;
  background-color: var(--color-bg-cream);
}
.auth-page__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.auth-page__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 560px;
  margin-inline: auto;
}
h1.page-title-section {
    font-family: var(--font-trakya);
    font-weight: 400;
    color: var(--color-text);
    position: relative;
    text-align: center;
    margin: 0;
}
h1.page-title-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 128px;
    height: 86px;
    background-image: url(/themes/arnaud_v9/assets/img/auth/plume-login.svg);
    background-size: auto;
    background-position: center top;
    background-repeat: no-repeat;
}
section#content p, #content header p {
    font-family: var(--font-figtree);
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: var(--color-text);
}
@media (min-width: 0px) {
    h1.page-title-section {
        font-size: 28px;
        line-height: 1.4;
        top: -6px;
        padding-top: 56px;
    }
    h1.page-title-section::before {
        width: 80px;
        height: 56px;
        background-size: 80px;
    }
    .auth-page__columns {
        padding-inline: .5rem;
        margin-bottom: 1rem;
    }
    .auth-page__content .page-header {
      margin-bottom: 1rem;
    }
    .auth-page__content .page-footer {
      margin-top: 1rem;
    }
}
@media (min-width: 768px) {
    .breadcrumb__wrapper {
        margin-bottom: 1rem;
        margin-top: 1rem;
    }
    h1.page-title-section {
        font-size: 30px;
        line-height: 1.8;
        top: -8px;
        padding-top: 64px;
    }
    h1.page-title-section::before {
        width: 112px;
        height: 72px;
        background-size: 112px;
    }
    .auth-page__content .page-header {
      margin-bottom: 2rem;
    }
    .auth-page__content .page-footer {
      margin-top: 1.5rem;
    }
}
@media (min-width: 992px) {
    .breadcrumb__wrapper {
        margin-bottom: 1.5rem;
        margin-top: 1rem;
    }
    .auth-page__columns {
        align-items: stretch;
        margin-bottom: 3rem;
        row-gap: 60px;
        flex-wrap: nowrap;
        column-gap: 32px;
    }
    .auth-page__content, .auth-page__visual {
        width: calc(50% - 30px);
    }
    .auth-page__visual {
        display: flex;
        flex-direction: column;
        align-self: stretch;
        min-height: 100%;
        overflow: hidden;
    }
    .auth-page__image {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    h1.page-title-section {
        font-size: 34px;
        line-height: 1.8;
        top: -10px;
        padding-top: 87px;
    }
    h1.page-title-section::before {
        width: 128px;
        height: 86px;
    }
}
@media (min-width: 1200px) {
    .auth-page__columns {
        row-gap: 120px;
    }
    .auth-page__content, .auth-page__visual {
        width: calc(50% - 60px);
    }
    
    .breadcrumb__wrapper {
        margin-bottom: 2.5rem;
        margin-top: 1rem;
    }
}
@media (max-width: 992px) {
    .auth-page__visual {
        display: none;
    }
    /* .auth-page__columns {
        padding-inline: 1rem;
        padding-block: 2rem;
        background-image: url(/themes/arnaud_v9/assets/img/auth/arnaud-registration.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        margin: 0!important;
        position: relative;
    }
    .auth-page__columns::before {
        content: '';
        position: absolute;
        inset: 0;
        background-color: var(--color-bg-cream);
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        opacity: 0.7;
    } */
    .auth-page__content {
        margin-inline: auto;
        position: relative;
        z-index: 1;
    }
    .page:not(body) {
        padding-bottom: 0;
    }
}
/*** form ***/
.form-label, label {
    margin-bottom: .25rem;
    font-family: var(--font-figtree);
    font-weight: 400;
    color: var(--color-text);
}
.form-control {
    border: 1px solid #D9D9D9;
    border-radius: 6px;
    color: var(--color-text)!important;
    font-family: var(--font-figtree);
    font-weight: 400;
}
.form-control:focus {
    border-color: var(--color-hover);
    box-shadow: 0 0 0 .25rem rgb(54 144 167 / 15%);
    outline: 0;
}
.input-group.password-field, .input-group {
    position: relative;
}
.input-group .btn-transparent {
    border-radius: 0 6px 6px 0;
    width: 48px;
    height: 100%;
    border: none;
    background: transparent;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
}
.form-text {
    display: none;
}
.form-check .form-check-input:checked {
    background-color: var(--color-action);
    border-color: var(--color-action);
}
.form-check .form-check-input:focus {
    border-color: var(--color-action);
    box-shadow: 0 0 0 .25rem rgb(241 195 104 / 25%);
}
.formgroup_id_gender {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.buttons-wrapper .btn.btn-basic {
    width: 100%;
    text-align: right !important;
    margin: 0 0 0 auto !important;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-family: var(--font-figtree);
    font-weight: 400;
    color: var(--color-light-action);
    text-decoration: underline;
    transition: all .3s ease;
    &:hover, &:focus {
        color: var(--color-action);
        text-decoration: none;
    }
    &:active, &:focus-visible {
        color: var(--color-action);
        text-decoration: none;
    }
}
#back-to-login {
    text-decoration: none!important;
    margin: 0 auto;
    justify-content: center;
    color: #000;
    font-weight: 500;
    transition: all .3s ease;
    &:hover, &:focus {
        color: var(--color-action);
        text-decoration: none;
    }
    &:active, &:focus-visible {
        color: var(--color-action);
        text-decoration: none;
    }
}
.buttons-wrapper .btn.btn-primary , .btn.btn-primary {
    font-family: var(--font-figtree);
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    background: var(--color-hover);
    border-color: var(--color-hover);
    color: #fff !important;
    border-radius: 6px;
    transition: all .3s ease;
}
.buttons-wrapper .btn.btn-primary:hover , .btn.btn-primary:hover, .btn.btn-primary:focus,
.buttons-wrapper .btn.btn-primary:active, .btn.btn-primary:active, .btn.btn-primary:focus-visible {
    background: var(--color-action);
    border-color: var(--color-action);
    color: #fff !important;
}
.login__register-prompt, .login__register-prompt span, .login__register-prompt a,
.register-form__login-prompt, .register-form__login-prompt a ,.register-form__login-prompt span {
    font-family: var(--font-figtree);
    font-weight: 400;
    color: var(--color-text-blue);
    text-align: center;
}
.register-form__login-prompt a {
    text-decoration: underline;
    color: var(--color-hover);
    transition: all .3s ease;
    &:hover, &:focus {
        color: var(--color-hover);
        text-decoration: none;
    }
    &:active, &:focus-visible {
        color: var(--color-hover);
        text-decoration: none;
    }
}
.login__register-prompt a {
    text-decoration: underline;
    color: var(--color-hover);
    transition: all .3s ease;
    &:hover, &:focus {
        color: var(--color-hover);
        text-decoration: none;
    }
    &:active, &:focus-visible {
        color: var(--color-hover);
        text-decoration: none;
    }
}
@media (min-width: 0px) {  
    .formgroup_id_gender {
        gap: 40px;
    }
    .formgroup_id_gender .form-check-inline {
        margin-right: 2.5rem;
    }
    .form-label, label {
        font-size: 16px;
        line-height: 30px;
    }
    .form-control {
        min-height: 44px;
        font-size: 16px;
        line-height: 24px;
    }
    .input-group .btn-transparent {
        width: 44px;
    }
    .input-group .form-control {
        padding-right: 52px;
        z-index: 1;
    }
    .form-check .form-check-input {
        width: 20px;
        height: 20px;
        margin-right: .5rem;
        margin-top: 2px;
    }
    
    .buttons-wrapper .btn.btn-basic {
        font-size: 16px;
        line-height: 30px;
    }
    #back-to-login {
        font-size: 16px;
    }
    .buttons-wrapper .btn.btn-primary , .btn.btn-primary {
        font-size: 16px;
        line-height: 28px;
        padding: 10px 20px;
        margin: 1rem 0 1.5rem;
    }
    .login__register-prompt, .login__register-prompt span, .login__register-prompt a,
    .register-form__login-prompt, .register-form__login-prompt a ,.register-form__login-prompt span {
        font-size: 16px!important;
        line-height: 1.2;
    }   
}
@media (min-width: 576px) {  
    .buttons-wrapper .btn.btn-primary , .btn.btn-primary {
        font-size: 18px;
        line-height: 28px;
        padding: 10px 20px;
        margin: 1rem 0 1.5rem;
    }
}
@media (min-width: 768px) {  
    .formgroup_id_gender {
        gap: 60px;
    }
    .formgroup_id_gender .form-check-inline {
        margin-right: 3.325rem;
    }
    .form-control {
        min-height: 48px;
        font-size: 16px;
        line-height: 24px;
    }
    .input-group .btn-transparent {
        width: 44px;
    }
    .input-group .form-control {
        padding-right: 56px;
    }
    .form-check .form-check-input {
        width: 22px;
        height: 22px;
        margin-right: .5rem;
        margin-top: 2px;
    }
    
    .buttons-wrapper .btn.btn-basic {
        font-size: 18px;
        line-height: 34px;
    }
    #back-to-login {
        font-size: 18px;
    }
    .buttons-wrapper .btn.btn-primary , .btn.btn-primary {
        font-size: 18px;
        line-height: 30px;
        padding: 12px 20px;
        margin: 1rem 0 1.5rem;
    }
    .login__register-prompt, .login__register-prompt span, .login__register-prompt a,
    .register-form__login-prompt, .register-form__login-prompt a ,.register-form__login-prompt span {
        font-size: 16px!important;
        line-height: 1.2;
    }   
}
@media (min-width: 992px) {    
.formgroup_id_gender {
    gap: 70px;
}
.formgroup_id_gender .form-check-inline {
    margin-right: 4.325rem;
}
.form-label, label {
    font-size: 16px;
    line-height: 30px;
}
.form-control {
    min-height: 48px;
    font-size: 16px;
    line-height: 24px;
}
.input-group .btn-transparent {
    width: 48px;
}
.input-group .form-control {
    padding-right: 56px;
}
.buttons-wrapper .btn.btn-basic {
    font-size: 18px;
    line-height: 34px;
}
#back-to-login {
    font-size: 20px;
}
.buttons-wrapper .btn.btn-primary , .btn.btn-primary {
    font-size: 20px;
    line-height: 30px;
    padding: 15px 10px;
    margin: 1rem 0 1.5rem;
}
.login__register-prompt, .login__register-prompt span, .login__register-prompt a,
.register-form__login-prompt, .register-form__login-prompt a ,.register-form__login-prompt span {
    font-size: 18px!important;
    line-height: 1.2;
}
}
@media (max-width: 1200px) {
    .container.auth-page {
        max-width: 100%;
    }
}