/* /assets/css/auth.css */

/* ฟอนต์และพื้นหลัง */
body {
  font-family: "Sarabun", sans-serif, "Segoe UI", Roboto, Helvetica, Arial;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  color: #212529;
}

/* card login */
.card {
  border-radius: 1rem;
  border: none;
}

.card-body {
  padding: 2rem;
}

/* title */
h5 {
  font-weight: 600;
  color: #0d6efd;
}

/* form input */
.form-control {
  border-radius: 0.5rem;
  border: 1px solid #ced4da;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.2rem rgba(13,110,253,.25);
}

/* button */
.btn-primary {
  border-radius: 0.5rem;
  font-weight: 500;
  padding: 0.6rem;
}

/* เพิ่ม hover effect */
.btn-primary:hover {
  background-color: #0b5ed7;
}

/* small link เช่น ลืมรหัสผ่าน */
.auth-links {
  margin-top: 1rem;
  text-align: center;
}

.auth-links a {
  font-size: 0.9rem;
  color: #6c757d;
  text-decoration: none;
}

.auth-links a:hover {
  text-decoration: underline;
  color: #0d6efd;
}
