*{
	padding: 0;
	margin: 0 ;
}

@font-face { font-family: Inter; src: url('Inter/Inter-VariableFont_slnt,wght.ttf'); } 


.login-container {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  width: 100%;
  max-width: 350px;
  text-align: center;
  border:1px solid #dddddd;
  transition: 0.5s;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Inter';
  margin-top:12vh;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}


.login-container h2 {
  margin-bottom: 30px;
  color: #111;
}

.input-group {
  position: relative;
  margin-bottom: 25px;
}

.input-group input {
  width: 100%;
  border: none;
  border-bottom: 2px solid #aaa;
  background: transparent;
  padding: 10px 5px;
  font-size: 14px;
  outline: none;
}

.input-group label {
  position: absolute;
  left: 5px;
  top: 10px;
  color: #888;
  font-size: 14px;
  pointer-events: none;
  transition: 0.3s;
}

.input-group input:focus + label,
.input-group input:valid + label {
  top: -10px;
  font-size: 12px;
  color: #4f8fc0;
}

.login-btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 6px;
  background: linear-gradient(90deg, #2f80ed, #27ae60);
  color: white;
  font-size: 15px;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.2s;
}

.login-btn:hover {
  opacity: 0.9;
}

.code-btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 6px;
  background: linear-gradient(90deg, #ed842f, #962b1f);
  color: white;
  font-size: 15px;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.2s;
}

.code-btn:hover {
  opacity: 0.9;
}

.links {
  margin-top: 20px;
  font-size: 13px;
  color: #555;
}

.links a {
  text-decoration: none;
  color: #4f8fc0;
  transition: 0.5s;
}
.links a:hover {
  font-weight: 600;
  color: #a02d2d;
}

.links span {
  font-weight: bold;
}

.links p {
  margin-top: 10px;
}


#form_box_code{
  display: block;
}
#form_box_password{
  display: none;
}



.headline-password{
  position: relative;
  font-family: 'Inter';
  font-size:1.5em;
  color:#000;
  text-align: center;
  margin-top: 10vh;
}





/* Container */
.steps {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  font-family: 'Inter';
  margin-top: 4vh;
  width: 96%;
  margin-left: 2%;
}

/* Einzelner Step */
.step {
  position: relative;
  flex: 1 1 250px;
  max-width: 300px;
  border-radius: 20px;
  padding: 30px 20px;
  color: #000;
  text-align: center;
  transition: 1s;
  cursor: pointer;
}
.step:hover {
background-image: linear-gradient(to bottom right, rgb(255, 255, 255), rgb(211, 211, 211));
}

/* Farben */
.step.red { border:3px solid #ff4d5a; }
.step.orange { border:3px solid #ff8c00; }
.step.yellow { border:3px solid #31d341; }

/* Icon */
.icon {
  font-size: 40px;
  margin-bottom: 20px;
}

/* Step Label */
.label {
  display: inline-block;
  background: #fff;
  color: #333;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

/* Text */
.step p {
  font-size: 14px;
  line-height: 1.5;
}

/* Pfeil */
.step::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 20px solid currentColor;
}

/* Pfeil-Farben passend zum Step */
.step.red::after { color: #ff4d5a; }
.step.orange::after { color: #ff8c00; }

/* Letzter Step ohne Pfeil */
.step:last-child::after {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step::after {
    display: none;
  }
}