/* styles/components/infoSignUpPage.css */

/*----------------------------------------
  Variables (override in tokens.css if needed)
----------------------------------------*/
:root {
  --color-navy:      #001F3F;
  --color-teal:      #00D0B0;
  --color-white:     #ffffff;
  --color-grey-50:   #f7fafc;
  --color-grey-100:  #edf2f7;
  --color-grey-200:  #e2e8f0;
  --color-grey-300:  #cbd5e0;
  --color-grey-400:  #a0aec0;
  --color-grey-600:  #4a5568;
  --radius-sm:       4px;
  --radius-md:       8px;
  --radius-lg:       12px;
  --shadow-sm:       0 1px 3px rgba(0,0,0,0.1);
  --shadow-md:       0 4px 6px rgba(0,0,0,0.1);
  --font-stack:      'Poppins', sans-serif;
}

/*----------------------------------------
  Global Reset & Base
----------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: var(--font-stack);
  background: var(--color-grey-50);
  color: var(--color-navy);
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}

/*----------------------------------------
  Navbar
----------------------------------------*/
.nav-container {
  background: linear-gradient(90deg, #1D3557, #003366);
  padding: 1rem 2rem;
  box-shadow: var(--shadow-md);
}
.nav-container nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-container .logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}
.nav-links li a,
.nav-links li .btn {
  color: var(--color-white);
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.nav-links li a:hover,
.nav-links li .btn:hover {
  background: rgba(255,255,255,0.1);
}

/*----------------------------------------
  Usher Login Section
----------------------------------------*/
.login-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
}
.login-section .container {
  background: var(--color-white);
  padding: 2.5rem 2rem;
  max-width: 400px;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.login-section h1 {
  margin-bottom: 0.5rem;
  font-size: 1.75rem;
}
.login-section p {
  margin-bottom: 1.5rem;
  color: var(--color-grey-600);
}

/* Form Groups */
.form-group {
  margin-bottom: 1.25rem;
  text-align: left;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--color-grey-600);
}
.form-group input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-grey-300);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: border-color 0.2s;
}
.form-group input:focus {
  outline: none;
  border-color: var(--color-teal);
}

/* Login Button */
.login-section .btn {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  background: var(--color-teal);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.login-section .btn:hover {
  background: #00b399;
  transform: translateY(-1px);
}

/* Auth Link */
.auth-link {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--color-grey-600);
}

/*----------------------------------------
  Footer
----------------------------------------*/
footer {
  background: var(--color-navy);
  color: var(--color-white);
  text-align: center;
  padding: 1rem 0;
  font-size: 0.875rem;
}



