/* Gaya asas untuk semua page auth (login, register, forgot) */
body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #007ad0, #00b894);
  margin: 0;
  padding: 0;
  min-height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;
}

.auth-container {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  text-align: center;
}

/* Bahagian logo + tajuk */
.logo-section {
  margin-bottom: 20px;
}

.logo {
  width: 380px;
  height: auto;
  display: block;
  margin: 0 auto 20px;
}

.site-title {
  font-size: 32px;
  font-weight: bold;
  color: #007ad0;
  margin: 5px 0;
}

.auth-title {
  font-size: 29px;
  color: #333;
  margin-bottom: 15px;
}

/* Form */
.auth-form {
  text-align: left;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  font-weight: bold;
  font-size: 17px;
  display: block;
  margin-bottom: 5px;
  color: #333;
}

.form-group input {
  width: 100%;
  padding: 12px 3px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  transition: 0.3s;
}

.form-group input:focus {
  border-color: #0013c2;
  outline: none;
  box-shadow: 0 0 6px rgba(0, 122, 208, 0.4);
}

/* Butang */
.btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #007ad0, #00b894);
  border: none;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: linear-gradient(135deg, #00ffcc, #0095ff);
}

/* Link bawah form */
.auth-switch {
  margin-top: 15px;
  font-size: 15px;
  color: #333;
  text-align: center;
}

.auth-switch a {
  color: #007ad0;
  text-decoration: none;
  font-weight: bold;
}

.auth-switch a:hover {
  text-decoration: underline;
}
