/* ======================================
   Banti v2 - Registration Page Specific Styles
   Shared styles loaded from resources/css/main.css
   ====================================== */

/* ======================================
   Registration Page Layout
   ====================================== */
.register-page {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  width: 100%;
  min-height: 100vh;
  background-color: #f5f5f5;
  padding: 20px 0;
  overflow-y: auto;
}

.register-container {
  width: 100%;
  max-width: 580px;
  padding: 20px;
  flex-shrink: 0;
}

.register-card {
  background: white;
  border-radius: 0.375rem;
  padding: 40px;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
  position: relative;
}

.register-card h2 {
  text-align: center;
  color: var(--brand-primary-text);
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 600;
}

/* ======================================
   Form Styles
   ====================================== */

/* ======================================
   Form Labels & Inputs
   ====================================== */
.form-label {
  color: var(--brand-primary-text);
}

.optional {
  color: #999;
  font-size: 0.85rem;
  font-weight: 400;
}

/* ======================================
   Input Group Text - Icons
   ====================================== */
.input-group-text {
  background-color: #f8f8f8;
  border-color: #dee2e6;
  color: #6c757d;
}

/* ======================================
   Help Text / Small Text
   ====================================== */
.text-muted {
  color: #999 !important;
  font-size: 0.85rem;
}

/* ======================================
   Plan Info Alert
   ====================================== */
.plan-info {
  background-color: #e3f2fd;
  border-color: #90caf9;
  border-left: 4px solid #2196f3;
  color: #1565c0;
  padding: 15px;
  border-radius: 4px;
}

.plan-info strong {
  color: #1565c0;
}

/* ======================================
   Terms & Privacy Text
   ====================================== */
.terms-text {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
}

.terms-text a {
  color: var(--brand-link-color);
  text-decoration: none;
}

.terms-text a:hover {
  text-decoration: underline;
}

/* ======================================
   Login Link
   ====================================== */
.login-link {
  font-size: 0.9rem;
  color: #666;
}

.login-link a {
  color: var(--brand-link-color);
  text-decoration: none;
  font-weight: 500;
}

.login-link a:hover {
  color: var(--brand-link-hover-color);
  text-decoration: underline;
}

/* ======================================
   Responsive Design
   ====================================== */
@media (max-width: 576px) {
  .register-page {
    padding: 10px;
  }

  .register-card {
    padding: 30px 20px;
  }

  .register-card h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .form-control {
    font-size: 1rem; /* Prevents zoom on iOS */
  }

  .plan-info {
    font-size: 0.85rem;
    padding: 12px;
  }

  .terms-text {
    font-size: 0.75rem;
  }
}
