:root {
  --rabo-blue:    #004699;
  --rabo-orange:  #FF6600;
  --gray-100:     #f8f9fa;
  --gray-800:     #343a40;
  --white:        #ffffff;
  --black:        #111111;
}
body {
  width: 100vw;
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ==================== LOGIN PAGE CSS (White Background + Picture Style) ==================== */

.login-page {
  min-height: 100vh;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  font-family: 'Inter', system-ui, sans-serif;
}

.login-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 420px;
  padding: 3rem 2.5rem;
  text-align: center;
}

.logo-container {
  margin-bottom: 2rem;
}

.logo-container img {
  height: 70px;
  width: auto;
}

.login-page h1 {
  font-size: 1.85rem;
  color: var(--rabo-orange);
  margin-bottom: 0.4rem;
}



.subtitle {
  color: #64748b;
  font-size: 1.05rem;
  margin-bottom: 2.2rem;
}

.form-section h3 {
  color: #1e2937;
  margin-bottom: 1.8rem;
  font-size: 1.35rem;
}

.form-group {
  margin-bottom: 1.6rem;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 0.6rem;
  font-weight: 500;
  color: #334155;
  font-size: 0.95rem;
}

.form-group input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size: 1rem;
  background: #f8fafc;
  transition: all 0.3s;
}

.form-group input:focus {
  outline: none;
  border-color: #004699;
  box-shadow: 0 0 0 3px rgba(0, 70, 153, 0.15);
}

.password-wrapper {
  position: relative;
}

.eye-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #64748b;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 1.2rem 0;
  font-size: 0.95rem;
  color: #475569;
}

.btn-signin {
  width: 100%;
  padding: 15px;
  background: linear-gradient(90deg, #004699, #1e40af);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  margin: 1.5rem 0 1rem;
  transition: all 0.3s;
}

.forgot:hover {
  color: var(--rabo-orange);
}

.btn-signin:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 70, 153, 0.3);
  color: var(--rabo-orange);
}

.divider {
  margin: 1.8rem 0;
  color: #94a3b8;
  position: relative;
}

.divider::before, .divider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  width: 80px;
  background: #e2e8f0;
}

.divider::after {
  left: 260px;
}



.btn-create {
  width: 100%;
  padding: 14px;
  background: var(--rabo-orange);
  color: white;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size: 1.05rem;
  cursor: pointer;
  font-weight: 500;
}

.btn-create:hover {
  color: var(--rabo-blue);
}

.extra-links {
  text-align: center;
  margin: 1rem 0;
}

.extra-links a {
  color: #004699;
  text-decoration: none;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0 1rem;
  font-size: 0.9rem;
}

.footer-links a {
  color: #64748b;
  text-decoration: none;
}

.security-note {
  text-align: center;
  color: #64748b;
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
.divider::before, .divider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  width: 50px;
  background: #e2e8f0;
}

  .divider::after {
  left: 215px;
}
}