/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.5;
  }
  
  .min-h-screen {
    min-height: 100vh;
  }
  
  .bg-ecf0f1 {
    background-color: #ecf0f1;
  }
  
  /* Container */
  .container {
    width: 100%;
    height: 100%;
    max-width: 1200px;
    /* margin-top: 1rem; */
    padding: 0 1rem;
    align-items: center;

  }
  
  /* Header */
  .sticky-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: #fffffb;
    border-bottom: 1px solid #d29561;
    border-radius: 0 0 0.75rem 0.75rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  }
  
  .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
  }
  
  .logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
  }
  
  .logo-text {
    color: #088543;
    font-size: 1.875rem;
    font-weight: 700;
  }
  
  /* Main content */
  .main-content {
    margin: 4rem;
    padding: 4rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    
  }
  
  @media (min-width: 768px) {
    .main-content {
      padding: 6rem 1rem;
    }
  }
  
  /* Card */
  .card {
    margin-top: 12rem;

    align-items: center;
    width: 100%;
    max-width: 28rem;
    background-color: #fffffb;
    border: 1px solid #d29561;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }
  
  .card-content {
    padding: 2rem;
    align-items: center;

  }
  
  /* Form */
  .login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .form-header {
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  .form-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #0f0326;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .form-label {
    display: block;
    color: #0f0326;
    font-weight: 500;
  }
  
  .form-input {
    width: 100%;
    padding: 0.5rem 0.75rem;
    background-color: #e8e4ec;
    border: none;
    border-bottom: 1px solid #0f0326;
    border-radius: 0.375rem;
    font-size: 1rem;
  }
  
  .password-input-container {
    position: relative;
  }
  
  .form-input[type="password"],
  .form-input[type="text"] {
    padding-right: 2.5rem;
  }
  
  .password-toggle {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #0f0326;
    cursor: pointer;
  }
  
  /* Button */
  .submit-button {
    width: 100%;
    background-color: #088543;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.375rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
  }
  
  .submit-button:hover {
    background-color: rgba(8, 133, 67, 0.9);
  }
  
  /* Register link */
  .register-link {
    text-align: center;
    color: rgba(15, 3, 38, 0.8);
    margin-top: 1rem;
  }
  
  .text-accent {
    color: #088543;
    text-decoration: none;
  }
  
  .text-accent:hover {
    text-decoration: underline;
  }
  
  .text-center {
    text-align: center;
  }
  
  