.login-container {
	width: 100%;
	max-width: 750px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 90px;
	flex-shrink: 1;
	align-self: center;
	background-color: var(--bc-white);
	padding: 138px 15px;
	border-radius: 23px;
	height: 100%;
	max-height: 100%;
	overflow: hidden;
}

.login-container-form {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
}

.login-container-input-fields {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
}

.login-container-btn {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.login-container-btn-secondary-text {
	display: flex;
	justify-content: center;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	text-transform: uppercase;
	line-height: 1.167;
	letter-spacing: 2.38px;
	text-align: center;
	padding: 0 9px;
	border-radius: 4px;
}

.login-container-btn-primary {
	color: var(--bc-white);
	background-color: var(--bc-black);
	padding-top: 13px;
	padding-bottom: 13px;
}

.login-container-btn-secondary {
	height: 40px;
	flex-shrink: 0;
	padding-top: 12px;
	padding-bottom: 12px;
	border: 1px solid var(--bc-black);
}

.login-container-text-cookie {
	margin-top: 11px;
	align-self: stretch;
}

.login-img {
	flex: 1 1 0;
	height: 100%;
	width: 100%;
	object-fit: cover;
  object-position: top right;
	align-self: stretch;
	border-radius: 23px;
}

/* slideshow / carousel */
.bg-img {
	position: relative;
	flex: 1 1 0 !important;
	min-width: 0 !important;
	height: 100% !important;
	align-self: stretch !important;
	border-radius: 23px;
	overflow: hidden;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.bg-img .slideshow {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	inset: 0;
}

.bg-img .slideshow li {
	position: absolute;
	inset: 0;
}

.bg-img .slideshow li span {
	width: 100%;
	height: 100%;
	position: absolute;
	inset: 0;
	opacity: 0;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	animation: imageAnimation 100s linear infinite 0s;
	-webkit-animation: imageAnimation 100s linear infinite 0s;
	-moz-animation: imageAnimation 100s linear infinite 0s;
	border-radius: 23px;
}

@-webkit-keyframes imageAnimation {
  0% { opacity: 0; -webkit-animation-timing-function: ease-in; }
  10% { opacity: 1; -webkit-animation-timing-function: ease-out; }
  20% { opacity: 1; }
  30% { opacity: 0; }
  100% { opacity: 0; }
}
@-moz-keyframes imageAnimation {
  0% { opacity: 0; -moz-animation-timing-function: ease-in; }
  10% { opacity: 1; -moz-animation-timing-function: ease-out; }
  20% { opacity: 1; }
  30% { opacity: 0; }
  100% { opacity: 0; }
}
@keyframes imageAnimation {
  0% { opacity: 0; animation-timing-function: ease-in; }
  10% { opacity: 1; animation-timing-function: ease-out; }
  20% { opacity: 1; }
  30% { opacity: 0; }
  100% { opacity: 0; }
}
/* slideshow.*/

.idplogin {
	width:100%;
	padding-top:20px;
	text-align: center;
}
.idplogin a {
    color: var(--bc-white);
    background-color: var(--bc-black);
    padding-top: 13px;
    padding-bottom: 13px;

    display: flex;
    justify-content: center;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 1.167;
    letter-spacing: 2.38px;
    text-align: center;
    padding: 13px 9px;
    border-radius: 4px;
}
.idplogin a:hover {
    color: var(--bc-black);
    background-color: var(--bc-grey);
}

.defloginlink {
	  width:100%;
    display: flex;
    justify-content: center;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2.38px;
    text-align: center;
}

.deflogin, .defloginlink {
	  width:100%;
    display: flex;
    justify-content: center;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 1.167;
    letter-spacing: 2.38px;
    text-align: center;
    padding: 13px 9px;
    border-radius: 4px;
}
.deflogin:hover {
    color: var(--bc-black) !important;
    background-color: var(--bc-grey) !important;
    border: 1px solid var(--bc-grey) !important;
}

.logo-login {width:280px;}

/*overrides*/

#user-login-form label, #user-pass label {
  display: unset;
}

.login-container-form,
#block-content {
	all: unset;
  display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
  width: 360px !important;
}

.input-group-desktop-text,
.js-form-item.form-item.js-form-type-textfield.form-type-textfield,
.js-form-item.form-item.js-form-type-password.form-type-password {
    all: unset;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group-desktop-text-label,
.form-item__label {
    all: unset;
    font-size: 15px;
    font-style: normal;
    line-height: normal;
    letter-spacing: 0px;
    text-align: left;
}

.input-group-desktop-text-input,
.solo-input, 
.solo-select {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0px;
  text-align: left;
  background-color: unset;
  padding: 13px 15px !important;
  border: 1px solid var(--bc-dark-grey) !important;
  border-radius: 4px;
  margin-bottom: 8px;
}

.solo-select {
  margin-top: 5px;
  padding: 14px 15px !important;
}

.messages-list {
    width: 100%;
}

.messages {
    border-radius: 4px;
    border: none !important;
    margin: 0 !important;
}

.messages.messages--error {
    background: var(--bc-semantic-error) !important;
    color: var(--bc-white) !important;
    line-height: 1.3em;
}

.messages.messages--status {
    background: var(--bc-semantic-success) !important;
    color: var(--bc-white) !important;
    line-height: 1.3em;
}

.messages.messages--error .messages__close,
.messages.messages--error .messages__close:hover::before,
.messages.messages--error .messages__close:hover::after,
.messages.messages--status .messages__close,
.messages.messages--status .messages__close:hover::before,
.messages.messages--status .messages__close:hover::after {
    border-color: var(--bc-white) !important;
}
.messages__close, .messages__close::after, .messages__close::before {
    border-color: var(--bc-white);
}

body.path-user-login,
body.path-user-password,
body.path-user-register {
  display: block !important;
  gap: 0 !important;
}

body.path-user-login .dialog-off-canvas-main-canvas,
body.path-user-password .dialog-off-canvas-main-canvas,
body.path-user-register .dialog-off-canvas-main-canvas, {
  min-height: 100dvh;
}

body.path-user-login,
body.path-user-login html,
body.path-user-password,
body.path-user-password html {
  overflow: hidden !important;
}

body.path-user-login .kf-login-shell,
body.path-user-password .kf-login-shell,
body.path-user-register .kf-login-shell {
  display:flex;
  width:100vw;
  min-height:100dvh;
  border-radius:23px;
  overflow:hidden;
  background:var(--bc-dark-beige);
  height: 100dvh;
  padding: 2px;
  gap:2px;
  box-sizing: border-box;
}
@supports (min-height: 100svh){
    body.path-user-login .kf-login-shell,
    body.path-user-password .kf-login-shell,
    body.path-user-register .kf-login-shell { min-height: 100svh; }
}

body.path-user-login .page-wrapper,
body.path-user-password .page-wrapper,
body.path-user-register .page-wrapper {
  position:static !important;
  width:100% !important;
}

body.path-user-login .login-container,
body.path-user-password .login-container,
body.path-user-register .login-container {
  flex:0 1 750px !important;
  width: min(750px, 100%) !important;
  max-width:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:24px;
  padding:48px 15px;
  max-height: 100%;
}

body.path-user-login .bg-img,
body.path-user-password .bg-img,
body.path-user-register .bg-img {
  width:auto !important;
  flex:1 1 0 !important;
  min-width:0 !important;
  height:100% !important;
  object-fit:cover !important;
  align-self:stretch !important;
  border-radius:23px;
}

@media (max-width: 576px){
  body.path-user-login .kf-login-shell,
  body.path-user-password .kf-login-shell,
  body.path-user-register .kf-login-shell {
    flex-direction:column;
    padding:0;
    gap:0;
  }

  body.path-user-login .bg-img,
  body.path-user-password .bg-img,
  body.path-user-register .bg-img  { display:none !important; }

  body.path-user-login .login-container,
  body.path-user-password .login-container,
  body.path-user-register .login-container {
    flex:1 1 auto !important;
    width:100% !important;
    max-width:none !important;
    height:100svh;
    padding:24px 16px;
    justify-content:space-between;
  }
  body.path-user-login .login-container-form,
  body.path-user-login #block-content,
  body.path-user-password .login-container-form,
  body.path-user-password #block-content,
  body.path-user-register .login-container-form,
  body.path-user-register #block-content {
    width:95% !important;
    margin:0 auto;
  }
}

.mb-8px {margin-top:8px;}

.password-strength, .password-confirm-message {margin:0 0 20px 0;}
