/* ========================================
   VERIFICATION CODE
   ======================================== */

.ms-code-inputs{
    display:flex;
    justify-content:center;
    gap:.8rem;
    margin:2rem 0;
}

.registrierung-code {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 1.3rem;
    color: #aaa;
}

.login .registrierung-code p {
    margin: 0 0 .5rem;
	text-align: center;
}

.registrierung-code a {
    color: #F3ACBD;
    text-decoration: none;
    font-weight: bold;
}

.ms-code-digit{

    width:3.5rem;
    height:4.2rem;

    border:1px solid var(--border-color,#666);
    border-radius:12px;

    text-align:center;

    font-size:2rem;
    font-weight:600;

    background:transparent;

}

.ms-code-digit:focus{

    outline:none;

    border-color:var(--accent,#ffb27e);

}



/* ========================================
   FORM BASICS
   ======================================== */

.ms-auth-page {
    padding-top: 6rem;
}

.login-einleitung {
    background: black;
    color: white;
    padding: 4rem 6rem 4rem;
    max-width: 600px;
    width: calc(100% - 3rem);
    margin: 5rem auto;
    border: 1px solid #444;
    border-radius: 1.5rem;
}

.login-einleitung h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.login-einleitung > p {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  text-align: center;
}

.login-form p {
     margin: 0 auto 1rem;
}

.login label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 500;
  color: #fff;
}

.login input[type="text"],
.login input[type="email"],
.login input[type="password"] {
  width: 100%;
  margin: 0.3rem auto 1rem;
  display: block;
  border-radius: 0.2rem;
  border: 1px solid #666;
  background: #1a1a1a;
  color: #fff;
  font-size: 1.5rem;
  padding: 0.8rem;
}

::placeholder {
  color: #aaa;
  font-size: 0.95rem;
}

/* ========================================
   LOGIN ERROR
   ======================================== */
.login-error {
  color: #EC5836;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
}

.login-success {
  color: #EC5836;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
}

.kollektion-einleitung .login-error a {
  color: #F3ACBD !important;
  text-decoration: none;
  font-weight: bold;
}


@media (max-width: 600px) {

    .login-einleitung {
        width: calc(100% - 2rem);
        margin: 2rem auto;
        padding: 2rem;
        border-radius: 1rem;
    }

    .login-einleitung h2 {
        font-size: 1.6rem;
    }

    .login-einleitung > p {
 
        margin-bottom: 2rem;
    }

}


/* ========================================
   AUTOFILL
   ======================================== */

.login input:-webkit-autofill,
.login input:-webkit-autofill:hover,
.login input:-webkit-autofill:focus,
.login input:-webkit-autofill:active {

    -webkit-text-fill-color: #fff !important;

    -webkit-box-shadow: 0 0 0 1000px #1a1a1a inset !important;
    box-shadow: 0 0 0 1000px #1a1a1a inset !important;

    border: 1px solid #666 !important;

    transition: background-color 999999s ease-in-out 0s;

}