/* ==================== SIGNUP PAGE CSS ==================== */
:root {
  --rabo-blue:    #004699;
  --rabo-orange:  #FF6600;
  --gray-100:     #f8f9fa;
  --gray-800:     #343a40;
  --white:        #ffffff;
  --black:        #111111;
}


body {
  width: 100vw;
  box-sizing: border-box;
  overflow-x: hidden; overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


.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;
   overflow-x: hidden;
}

.login-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 460px;
  padding: 3rem 2.5rem;
  text-align: center;
}

.logo-container {
  margin-bottom: 2rem;
}

.logo-container img {
  height: 70px;
  width: auto;
}

h1 {
  font-size: 1.85rem;
  color: #0f172a;
  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,
.form-group select {
  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,
.form-group select: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;
}

.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;
}

.btn-signin:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 70, 153, 0.3);
  color: var(--rabo-orange);
}

.btn-create {
  width: 100%;
  padding: 14px;
  background: #f1f5f9;
  color: #1e2937;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size: 1.05rem;
  cursor: pointer;
  font-weight: 500;
}

.extra-links {
  text-align: center;
  margin: 1rem 0;
}

.extra-links a:hover {
    color: var(--rabo-orange)
}

.extra-links a {
  color: #004699;
  text-decoration: none;
}

.divider {
  margin: 1.8rem 0;
  color: #94a3b8;
  position: relative;
}

.divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e2e8f0;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  cursor: pointer;
  color: #666;
}

.modal h3 {
  color: #ef4444;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0 1rem;
  font-size: 0.9rem;
   overflow-x: hidden;
}

.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;
   overflow-x: hidden;
}

/* Responsive */
@media (max-width: 480px) {
  .login-card {
    padding: 2rem 1.5rem;
  }
}