/* ===========================
   CLIENT LOGIN PAGE STYLES
   =========================== */

/* Body & Background */
body.customers_login {
  display: flex;
  min-height: 100vh;
  background: url('../../image/custom-login-bg.jpg') no-repeat center center fixed;
  background-size: cover;
  position: relative;
}

body.customers_login::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* Hide Header */
body.customers_login header,
body.customers_login .header,
body.customers_login nav,
body.customers_login .navbar,
body.customers_login #header {
  display: none !important;
}

/* Login Form Container */
body.customers_login .col-md-4.col-md-offset-4 {
  position: relative;
  z-index: 2;
}

body.customers_login .panel_s {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 4px 16px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

body.customers_login .panel-body {
  padding: 48px 40px;
}

body.customers_login .login-heading {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
}

/* Form Inputs */
body.customers_login .form-control {
  border-radius: 10px;
  padding: 14px 18px;
  border: 1.5px solid #e0e0e0;
  font-size: 15px;
  transition: all 0.3s ease;
  background: #fafafa;
  height: auto;
  min-height: 46px;
}

body.customers_login .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(67, 50, 210, 0.1);
  background: #fff;
  outline: none;
}

/* Buttons */
body.customers_login .btn-primary {
  border-radius: 10px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  background: rgb(19, 80, 192);
  border: none;
  box-shadow: 0 4px 12px rgba(67, 50, 210, 0.3);
  transition: all 0.3s ease;
  text-transform: none;
  min-height: 50px;
}

body.customers_login .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(67, 50, 210, 0.4);
}

body.customers_login .btn-primary:active {
  transform: translateY(0);
}

body.customers_login .btn-default {
  border-radius: 10px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  min-height: 50px;
  transition: all 0.3s ease;
}

/* Labels */
body.customers_login .control-label {
  font-weight: 600;
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
}

/* Checkbox */
body.customers_login .checkbox label {
  font-weight: 500;
  color: #555;
}

/* Admin Login Link */
body.customers_login .admin-login-link-wrapper {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e0e0e0;
  text-align: center;
}

body.customers_login .admin-login-link {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  transition: all 0.3s ease;
  text-decoration: none;
}

body.customers_login .admin-login-link:hover {
  color: var(--secondary-color);
  text-decoration: none;
  transform: translateY(-2px);
}

body.customers_login .admin-login-link i {
  margin-right: 6px;
}



