.content_layout{
  max-width: 1440px;
  margin: 0 auto;
}

h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.form_group {
  position: relative;
  margin-bottom: 8px;
}

.form_content {
  display: flex;
  flex-direction: column;
}

.input_container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.input_icon {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  width: 24px;
  height: 24px;
}

#loginEmail,
#loginPassword,
#name,
#signUpEmail,
#signUpPassword,
#signUpConfirmPassword {
  box-sizing: border-box;
  height: 36px;
  width: 100%;
  padding: 20px;
  font-size: 1rem;
  font-weight: 400;
  border: 1px solid rgba(209, 209, 209, 1);
  border-radius: 12px;
  outline: none;
}

::placeholder {
  color: rgba(209, 209, 209, 1);
}

#loginEmail:focus,
#signUpEmail:focus,
#loginPassword:focus,
#signUpPassword:focus,
#signUpConfirmPassword:focus,
#name:focus {
  border: 1px solid rgb(41, 171, 226);
}

.error_message {
  color: red;
  font-size: 1rem;
  height: 24px;
  display: block;

}

.email_error_position {
  position: absolute;
  top: 182px;
}

.toast_animation{
  display: flex;
  background-color: #2A3647;
  color: white;
  font-size: 1.25rem;
  align-items: center;
  justify-content: space-evenly;
  height: 64px;
  padding: 16px;
  gap: 8px;
  border-radius: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 120%);
  opacity: 1;
  animation: overlaySlideUp 2s ease-in-out forwards;
  z-index: 3;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
}

@keyframes overlaySlideUp {
  0% {
    transform: translate(-50%, 700%);
    opacity: 1;
  }
  20% {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
  70% {
    transform: translate(-50%, -50%);
    opacity: 1; 
  }
  100% {
    transform: translate(-50%, 120%); /* auf -50% ändern, wenn es in der Mitte stehen bleiben soll */
    opacity: 0;
  }
}