* { box-sizing: border-box; }


body {
 margin: 0;
 font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
 background: #f6f7fb;
 color: #111827;
}


/* Header */
.site-header {
 padding: 36px 24px 10px;
 max-width: 1400px;
 margin: 0 auto;
 text-align: center;
}


.site-header h1 {
 margin: 0 0 8px;
 font-size: 44px;
}


.site-header p {
 margin: 0;
 color: #6b7280;
 font-size: 16px;
}


/* Grid layout 1 */
.dashboard-grid {
 max-width: 1400px;
 margin: 0 auto;
 padding: 32px;
 display: grid;
 gap: 28px;
 grid-template-columns: repeat(3, 1fr);
}

/* Grid layout 2   */

/* 
.dashboard-grid {
   width: min(1400px, 100%);
   margin: 0 auto;
   padding: 32px 32px 64px;
    display: grid;
   gap: 32px;
    /* FORCE 2 columns */
 /*  grid-template-columns: repeat(2, minmax(0, 1fr)); }  */
 

/* Card container */
.dashboard-card {
 background: #ffffff;
 border-radius: 16px;
 border: 1px solid #e5e7eb;
 box-shadow: 0 6px 18px rgba(0,0,0,0.06);
 display: flex;
 flex-direction: column;
 overflow: hidden;
 min-height: 340px;
 text-decoration: none;
 color: inherit;
 transition: transform 0.15s ease, box-shadow 0.15s ease;
}


/* Image */
.card-image {
 height: 190px;
 overflow: hidden;
 background: #f3f4f6;
}


.card-image img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 display: block;
}


/* Content */
.card-content {
 padding: 18px 18px 20px;
}


.dashboard-card h2 {
 margin: 8px 0 6px;
 font-size: 20px;
 line-height: 1.25;
 color: #990000;
}


.dashboard-card p {
 margin: 0;
 color: #6b7280;
 font-size: 14px;
}


/* Hover */
.dashboard-card:hover {
 transform: translateY(-3px);
 box-shadow: 0 10px 26px rgba(0,0,0,0.10);
}


/* Coming Soon */
.coming-soon {
 cursor: not-allowed;
 opacity: 0.7;
}


.coming-soon:hover {
 transform: none;
 box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}


/* Badge */
.badge {
 display: inline-block;
 margin-bottom: 6px;
 padding: 4px 10px;
 font-size: 11px;
 font-weight: 600;
 border-radius: 999px;
 background: #fdecea;
 color: #990000;
}

/* Responsive */
@media (max-width: 1100px) {
 .dashboard-grid {
   grid-template-columns: repeat(2, 1fr);
 }
}

@media (max-width: 700px) {
 .dashboard-grid {
   grid-template-columns: 1fr;
   padding: 20px;
 }


 .site-header h1 {
   font-size: 36px;
 }
}

/*  LOGIN PAGE */

.auth-wrap {
    min-height: calc(100vh - 120px);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 48px;   
    padding-bottom: 64px;
  }
  
  
  .auth-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 32px 32px;
    width: 100%;
    max-width: 380px;
  
    display: flex;
    flex-direction: column;
    gap: 16px;
  
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  }
  
  /* Inputs */
  .auth-label {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    gap: 6px;
  }
  
  .auth-input {
    height: 42px;
    padding: 0 12px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-size: 14px;
  }
  
  .auth-input:focus {
    outline: none;
    border-color: #990000;
    box-shadow: 0 0 0 3px rgba(153,0,0,0.15);
  }
  
  /* Button */
  .auth-button {
    margin-top: 8px;
    height: 44px;
    border-radius: 10px;
    border: none;
    background: #990000;
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
  }
  
  .auth-button:hover {
    background: #7f0000;
  }
  
  /* Error */
  .auth-error {
    color: #b91c1c;
    font-size: 13px;
    min-height: 16px;
  }
  









