/* Arvento Login Widget CSS */

.arvento-login-widget {
  max-width: 600px;
  margin: 0 auto;
}

.arvento-login-title {
  margin-bottom: 20px;
  text-align: center;
}

.lform {
  padding: 0px;
}

.lform .row {
  margin-bottom: 15px;
  position: relative;
}

.lform label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.lform input[type="text"],
.lform input[type="password"],
.lform input[type="email"],
.lform select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}



.password-reset-link,
.login-link {
  text-align: center;
  margin-top: 15px;
}

.password-reset-link a,
.login-link a {
  color: #007bff;
  text-decoration: none;
}

.password-reset-link a:hover,
.login-link a:hover {
  text-decoration: underline;
}

.error-message,
.message {
  margin-top: 10px;
  padding: 10px;
  border-radius: 4px;
}

.error-message {
  color: #dc3545;
  font-size: 12px;
  margin-top: 5px;
  display: block !important; /* Hata mesajlarının her zaman görünmesi için */
  padding: 3px 5px;
  border-radius: 3px;
}

/* Sadece errorMessage ve resetMessage ID'li elementler için gizleme özelliği */
#errorMessage,
#resetMessage {
  display: none;
  color: #721c24;
  padding: 8px;
  margin-top: 10px;
}

/* Sadece resetMessage için background-color */

.message {
  color: #721c24;
  display: none;
}

/* RTL diller için stil ayarlamaları */
html[dir="rtl"] .lform label {
  text-align: right;
}

/* Mobil düzenleme */
@media screen and (max-width: 480px) {
  .lform {
    padding: 15px;
  }

}
