.center_datas {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f8f8f8;
}

.form-section {
  margin-bottom: 20px;
}

.form-section .form-group input {
  width: 100%;
  border: 1px solid white;
  border-radius: 26px;
  padding: 10px 16px;
  box-sizing: border-box;
}

.form-section .form-group input:focus {
  border-color: #af4b83;
  outline: none;
  border-radius: 26px;
}

.form-section .form-group input::placeholder {
  
  font-size: 14.06px;
  font-weight: 400;
  line-height: 40px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #666666;
}

.login-head-text {
  text-align: left;
  margin-bottom: 20px;
  
  font-size: 29.18px;
  font-weight: 700;
  line-height: 30px;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  position: relative;
  display: inline-block;
}

.login-head-text::after {
  content: "";
  display: block;
  width: 88px;
  height: 3px;
  background-color: #ae4a84;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
}

.login-register_general form {
  display: flex;
  flex-direction: column;
}

.styleform_for_login .form-group label {
  margin-bottom: 5px;
  font-weight: bold;
}

.login_register_css_button {
  padding: 11px;
  color: #fff;
  border: none;
  cursor: pointer;
  
  font-size: 14.88px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  background-color: #af4b83;
  border-radius: 26px;
  transition: all 0.3s ease;
}

.login_register_css_button:hover {
  background-color: #933f6e;
  transition: all 0.3s ease;
}

.links_login {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 10px;
  margin-top: 1rem;
}

.links_login a {
  color: #333333;
  text-decoration: none;
  
  font-size: 14.18px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.links_login a:hover {
  text-decoration: underline;
}

.rememberme_checkbox {
  -webkit-appearance: none; /* Varsayılan stili kaldırır */
  -moz-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  background-color: #d9d9d9; /* Krem renk */
  border-radius: 3px;
  border: none; /* İsteğe bağlı bir sınır */
  cursor: pointer;
  display: inline-block;
  position: relative;
  user-select: none;
}

.rememberme_checkbox:checked::before {
  content: "✔";
  color: #ae4a84;
  font-size: 12px;
  position: absolute;
  top: 9px;
  left: 53%;
  transform: translate(-50%, -50%);
  user-select: none;
  
}

.create_account {
  text-align: center;
  
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  margin-top: 1.5rem;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;  
  color: #333333;
}

.create_account a {
  color: #AF4B83;
  text-decoration: underline;
}

.links_login a:nth-child(2){
    font-weight: 700 !important;
}

.login-register_general{
    width: 400px;
    user-select: none;
}

.password-container {
    position: relative;
}

.password-container input {
    width: 100%;
    padding-right: 40px; /* İkona yer ayırmaq üçün sağ tərəfdən boşluq */
}

.password-container .toggle-password {
    position: absolute;
    right: 10px;
    top: 58%;
    cursor: pointer;
    font-size: 12px;
    color: #555;
    transition: color 0.3s;
}

.password-container .toggle-password:hover {
    color: #000;
}
