.welcome {
  font-family: var(--font-varela);
  font-weight: var(--font-weight-normal);
  font-style: normal;
  font-size: 52px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: var(--main-black);
  margin-bottom:20px;
  text-shadow: 4px 4px 4px var(--black-border);
}
.wikethesa {
  font-family: var(--font-varela);
  font-weight: var(--font-weight-normal);
  font-style: normal;
  font-size: 65px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: var(--main-black);
  margin-bottom:70px;
  text-shadow: 4px 4px 4px var(--black-border);
}

.custom-reset-password-form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 35px;
}
.forget-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-start;
  align-items: center;
  min-height: 100vh;
  margin-top:-80px;
}

.message {
  width:260px;
  height:48px;
  font-weight: var(--font-weight-normal);
  font-size: 18px;
  font-family: var(--font-hebrew);
  color: var(--black-line);
  margin-bottom:40px;
}

.login-field-wrapper {
  width: 540px;
  height: 68px;
  border-radius: 20px;
  background-color: var(--main-white);
  box-shadow: 4px 4px 4px 0 rgba(154, 20, 176, 0.5);
  overflow: visible;
  margin-bottom: 70px;
  border-bottom: 2px solid var(--pruple-border);
}
.password-look {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

#forget-button {
  color: var(--main-white);
  background-color: var(--pruple);
  box-shadow: -4px 6px 6px rgba(0, 0, 0, 0.3);
  width: 220px;
  height: 68px;
  border-radius: 100px;
  border: none;
  font-weight: var(--font-weight-medium);
  font-family: var(--font-hebrew);
  font-size:20px;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: normal;  
  word-wrap: break-word; 
  text-align: center;   
  line-height: 1.3;
  width: 200px;   
}
.login-field-wrapper input {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  padding: 0 20px;
  box-sizing: border-box;
  outline: none;
  transition: none;
}

.login-field-wrapper input:focus {
  outline: none;
  border-radius: 20px;
}

.login-field-wrapper input::placeholder {
  font-size: 18px;
  font-family: var(--font-hebrew);
  color: var(--main-black);
  opacity: 1;
}

.forget-message {
  color: var(--red-error)
}


.success-wrapper {
  display: none;  
  justify-content: flex-end;
  padding-right:35px;
  gap:15px;
  margin-bottom:10px;
  align-items: center;
  width: 300px;
  height: 48px;
  border-radius: 20px;
  background-color: var(--main-white);
  overflow: visible;
}

.error-wrapper {
  display: none;  
  justify-content: flex-end;
  padding-right:30px;
  gap:15px;
  margin-bottom:10px;
  align-items: center;
  width: 300px;
  height: 48px;
  border-radius: 20px;
  background-color: var(--main-white);
  overflow: visible;
}

#error-login {
  color: var(--red-error);
  font-family: var(--font-hebrew);
  font-weight: var(--font-weight-bold);
  font-size: 16px;
  font-style: bold;
  line-height: 100%;
}

.login-message {
  display:flex;
  gap:15px;
  align-items: center;
  direction: ltr;
}

.loader {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
  display:none;
}

.spinner {
  width: 90px;
  height: 90px;
  border: 11px solid rgba(255, 255, 255, 1);
  border-right-color: rgba(217, 217, 217, 1); 
  border-radius: 50%;
  animation: spin 2s linear infinite;
  position: absolute;
  top: 0;
  left: 0;
}


.loader-text {
  position: absolute;
  z-index: 2;
  color: rgba(0, 0, 0, 1);
  font-family: var(--font-varela);
  font-weight: var(--font-weight-normal);
  font-size: 18px;
  text-align: center;
  padding: 0 10px;
  direction: rtl;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#login-message {
  font-family: var(--font-hebrew);
  font-weight: var(--font-weight-semibold);
  font-size: 16px;
  font-style: medium;
  line-height: 100%;
  color:var(--green-success);
}

.lang-en .message,{
    width: 389px;
    height: 48px;
    font-weight: var(--font-weight-normal);
    font-size: 18px;
    font-family: var(--font-hebrew);
    color: var(--black-line);
    margin-bottom: 16px;
}
.lang-de .message{
    width: 442px;
    height: 48px;
    font-weight: var(--font-weight-normal);
    font-size: 18px;
    font-family: var(--font-hebrew);
    color: var(--black-line);
    margin-bottom: 16px;
}

.lang-de #forget-button {
  color: var(--main-white);
  background-color: var(--pruple);
  box-shadow: -4px 6px 6px rgba(0, 0, 0, 0.3);
  height: 68px;
  border-radius: 100px;
  border: none;
  font-weight: var(--font-weight-medium);
  font-family: var(--font-hebrew);
  font-size:20px;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: normal;  
  word-wrap: break-word; 
  text-align: center;   
  line-height: 1.3;
  width: 260px;   
}

/* עבור גרמנית */
.lang-de .login-field-wrapper input {
    direction: ltr; /* הטקסט וה-placeholder יתחילו משמאל */
    text-align: left;
}

.lang-de .message {
    text-align: left; /* הטקסט שמעל השדה יתחיל משמאל */
    direction: ltr;
}