/* =================================
   BANK LOGIN – ICICI REFINED THEME
   (NO STRUCTURE CHANGES)
================================= */

body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #1f2937;

  /* Layered ICICI-style background */
  background:
    /* faint banking image */
    url("/images/banking-laptop.png") right 15% center no-repeat,

    /* soft grey workspace */
    linear-gradient(
      180deg,
      #f58220 0px,
      #f58220 64px,
      #f5f7fa 64px,
      #f5f7fa 100%
    );
  background-size: 420px, cover;
}

/* Center layout (unchanged behavior) */
.center-page {
  width: 100%;
  height: 100vh;
  text-align: center;
}

.center-page:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.center-box {
  display: inline-block;
  vertical-align: middle;
}

/* Login Card */
.bank-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 34px 32px;
  width: 100%;
  max-width: 420px;
  box-shadow:
    0 28px 60px rgba(0,0,0,0.18),
    0 12px 25px rgba(0,0,0,0.12);
  text-align: left;
}

/* Header */
.bank-header {
  text-align: center;
  margin-bottom: 26px;
}

.bank-header h1 {
  font-size: 20px;
  margin: 0;
  color: #0f3c6e;
  font-weight: 700;
}

.bank-header small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #6b7280;
}

/* Labels */
label {
  font-weight: 600;
  font-size: 13px;
  display: block;
  margin-bottom: 6px;
  color: #374151;
}

/* Inputs */
input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  margin-bottom: 18px;
  font-size: 14px;
  transition: all 0.2s ease;
}

input[type="text"]:focus,
input[type="password"]:focus {
  border-color: #f58220;
  box-shadow: 0 0 0 3px rgba(245,130,32,0.25);
  outline: none;
}

/* Button */
.btn-bank {
  width: 100%;
  padding: 13px;
  background: linear-gradient(
    180deg,
    #f58220,
    #e36b0a
  );
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-bank:hover {
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  transform: translateY(-1px);
}

/* Footer */
.bank-footer {
  margin-top: 20px;
  font-size: 11px;
  color: #9ca3af;
  text-align: center;
}
