/* ===== Original Theme Skin (Colors & Background) ===== */
body {
  background: linear-gradient(135deg, #e0f2fe 0%, #f8fafc 100%);
  min-height: 100vh;
}

.login-card {
  border-top: 5px solid #0284c7;
}

/* Button & Link Colors */
.btn-primary {
  background-color: #0284c7 !important;
  border-color: #0284c7 !important;
}

.btn-primary:hover {
  background-color: #0369a1 !important;
  border-color: #0369a1 !important;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.btn-primary:active {
  background-color: #075985 !important;
}

.form-control:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.1);
}

.pw-eye:hover {
  color: #0284c7;
}

a.text-primary {
  color: #0284c7 !important;
}

/* Form Elements */
.form-label {
  color: #334155;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-control {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 10px 14px;
  transition: all 0.2s ease;
}

.form-control:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.1);
}

/* Eye Icon */
.pw-wrap {
  position: relative;
}

.pw-eye {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 2;
  color: #64748b;
  transition: color 0.2s ease;
}

.pw-eye:hover {
  color: #0284c7;
}

/* Links */
a.text-primary {
  color: #0284c7 !important;
  text-decoration: none;
  transition: color 0.2s ease;
}

a.text-primary:hover {
  color: #0369a1 !important;
  text-decoration: underline;
}
