/* ========================================
   FORM ĐĂNG NHẬP / ĐĂNG KÝ - SELLAZ (FINAL)
   ======================================== */

/* Đăng nhập / Đăng ký*/
.wd-header-my-account .wd-tools-text {text-transform: none !important;}

/* Bố cục 2 cột cân đối */
.wd-grid-f-col {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
}

/* Hai khối chính */
.wd-grid-f-col .col-login,
.wd-grid-f-col .col-register {
  flex: 1;
  background-color: #f8f9f9;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

/* Nền riêng cho form Đăng ký */
.wd-grid-f-col .col-register {
  background-color: #eaf9ee;
}

/* Tiêu đề form */
.wd-login-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 25px;
  text-transform: uppercase;
}

/* Ô input */
.wd-grid-f-col input.input-text {
  width: 100%;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  padding: 10px 14px;
  background-color: #fff;
  transition: all 0.25s ease;
}
.wd-grid-f-col input.input-text:focus {
  border-color: #1a9f49;
  box-shadow: 0 0 0 1px #1a9f49;
  outline: none;
}

/* Nút (Đăng nhập / Đăng ký) */
.wd-grid-f-col button.button,
.wd-grid-f-col button.woocommerce-button {
  background-color: #1a9f49 !important;
  color: #fff !important;
  font-weight: 600;
  border-radius: 6px !important;
  padding: 12px 24px;
  width: 100%;
  text-transform: uppercase;
  transition: background-color 0.25s ease;
}
.wd-grid-f-col button.button:hover,
.wd-grid-f-col button.woocommerce-button:hover {
  background-color: #138a3d !important;
}

/* Chính sách bảo mật */
.woocommerce-privacy-policy-text p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin-top: 15px;
  margin-bottom: 20px;
}
.woocommerce-privacy-policy-link {
  color: #1a9f49;
  text-decoration: none;
  font-weight: 500;
}
.woocommerce-privacy-policy-link:hover {
  text-decoration: underline;
}

/* =============================
   KHỐI "GHI NHỚ" & "QUÊN MẬT KHẨU"
   ============================= */
.login-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

/* Cụm Ghi nhớ */
.login-form-footer .woocommerce-form__label-for-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  cursor: pointer;
  order: 1;
}
.login-form-footer input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #1a9f49;
}
.login-form-footer .woocommerce-form__label-for-checkbox span {
  font-size: 14px;
  color: #333;
}

/* Link Quên mật khẩu */
.login-form-footer a {
  color: #1a9f49;
  font-weight: 500;
  text-decoration: none;
  order: 2;
}
.login-form-footer a:hover {
  text-decoration: underline;
}

/* Xóa <br> thừa */
.login-form-footer br {
  display: none !important;
}

/* Responsive cho mobile */
@media (max-width: 768px) {
  .wd-grid-f-col {
    flex-direction: column;
    gap: 20px;
  }
  .wd-grid-f-col .col-login,
  .wd-grid-f-col .col-register {
    width: 100%;
    padding: 30px 20px;
    box-shadow: none;
  }
  .wd-grid-f-col .col-register {
    border-top: 1px solid #eee;
    margin-top: 20px;
  }
}


