/* Base styles */
:root {
    --background: #ffffff;
    --foreground: #0f172a;
    --muted: #f1f5f9;
    --muted-foreground: #64748b;
    --border: #e2e8f0;
    --primary: #0f172a;
    --primary-foreground: #ffffff;
  }
  
  /* Removed dark mode media query to keep form always light */
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--foreground);
    background-color: var(--background);
    line-height: 1.5;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  /* Layout */
  .grid {
    display: grid;
    min-height: 100vh;
  }
  
  @media (min-width: 1024px) {
    .grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  .flex-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #ffffff; /* Ensure this is always light */
    color: #0f172a; /* Ensure text is always dark */
  }
  
  @media (min-width: 768px) {
    .flex-col {
      padding: 2.5rem;
    }
  }
  
  /* Header */
  .header {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
  }
  
  @media (min-width: 768px) {
    .header {
      justify-content: flex-start;
    }
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
  }
  
  .logo-icon {
    display: flex;
    height: 1.5rem;
    width: 1.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    background-color: var(--primary);
    color: var(--primary-foreground);
  }
  
  /* Form container */
  .form-container {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
  }
  
  .form-wrapper {
    width: 100%;
    max-width: 20rem;
  }
  
  /* Form */
  .login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .form-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
  }
  
  .form-header h1 {
    font-size: 1.5rem;
    font-weight: 700;
  }
  
  .form-header p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-align: center;
  }
  
  .form-fields {
    display: grid;
    gap: 1.5rem;
  }
  
  .form-group {
    display: grid;
    gap: 0.5rem;
  }
  
  .password-header {
    display: flex;
    align-items: center;
  }
  
  .forgot-password {
    margin-left: auto;
    font-size: 0.875rem;
    text-decoration: underline;
    text-underline-offset: 4px;
  }
  
  .forgot-password:hover {
    text-decoration: underline;
  }
  
  label {
    font-size: 0.875rem;
    font-weight: 500;
  }
  
  input {
    display: flex;
    height: 2.5rem;
    width: 100%;
    border-radius: 0.375rem;
    border: 1px solid var(--border);
    background-color: transparent;
    padding: 0 0.75rem;
    font-size: 0.875rem;
    color: var(--foreground);
  }
  
  input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary);
  }
  
  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    height: 2.5rem;
    padding: 0 1rem;
    border: none;
    cursor: pointer;
    width: 100%;
  }
  
  .btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
  }
  
  .btn-primary:hover {
    opacity: 0.9;
  }
  
  .btn-outline {
    background-color: transparent;
    border: 1px solid var(--border);
    color: var(--foreground);
    display: flex;
    gap: 0.5rem;
  }
  
  .btn-outline:hover {
    background-color: var(--muted);
  }
  
  /* Divider */
  .divider {
    position: relative;
    text-align: center;
    font-size: 0.875rem;
  }
  
  .divider::after {
    content: "";
    position: absolute;
    inset: 0;
    top: 50%;
    z-index: 0;
    display: flex;
    align-items: center;
    border-top: 1px solid var(--border);
  }
  
  .divider span {
    position: relative;
    z-index: 10;
    background-color: #ffffff; /* Always light background */
    padding: 0 0.5rem;
    color: var(--muted-foreground);
  }
  
  
  /* Image container */
  .image-container {
    position: relative;
    display: none;
    background-color: var(--muted);
  }
  
  @media (min-width: 1024px) {
    .image-container {
      display: block;
    }
  }
  
  .image-container img {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  