    body {
        font-family: 'Raleway', sans-serif;
        margin: 0;
        padding: 0;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #2a2e35;
      }
      
      .login-card {
    background: linear-gradient(135deg, #25292e, #383e47);
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    padding: 1rem;
    width: 100%;
    max-width: 360px;
    color: #e0e0e0;
    text-align: center;
  }
  
  .login-header {
    color: #D18F3A;
    font-size: 2.0rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
  }
  
  .login-subtitle {
    font-size: 1rem;
    color: #b0b0b0;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  
      .form-group {
        margin-bottom: 0.75rem;
      }
  
      label {
        display: block;
        margin-bottom: 0.3rem;
        font-size: 0.85rem;
        color: #b0bec5;
      }
  
      input {
        padding: 0.4rem;
        border: 1px solid #3a4149;
        border-radius: 4px;
        background: #32383f;
        color: #e0e0e0;
        font-size: 0.9rem;
        transition: border-color 0.2s ease, background 0.2s ease;
      }
  
      input:focus {
        outline: none;
        border-color: #A67C32;
        background: #3a424a;
      }
  
      .error-message {
        color: #e74c3c;
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
      }
  
  .login-button {
      width: 100%;
    padding: 0.6rem;
    background: #A67C32;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 0.85rem;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    display: block;
    margin: auto;
  }
  
  .login-button:hover {
    background: #8C6930;
    transform: translateY(-1px);
  }
  
  .login-button:active {
    transform: translateY(0);
  }
  
  .loading-container {
    margin-top: 1rem;
    width: 100%;
    text-align: center;
}

.loading-bar {
    width: 100%;
    height: 4px;
    background: #32383f;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.loading-progress {
    width: 0%;
    height: 100%;
    background: #A67C32;
    position: absolute;
    left: 0;
    transition: width 1.5s ease;
}

.loading-text {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #b0b0b0;
}


.public-access {
  text-align: left;
}

.public-access h3 {
  color: #D18F3A;
  font-size: 1.2rem;
}

.public-projects-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.public-project-btn {
  display: block;
  padding: 0.75rem;
  background: linear-gradient(135deg, #1a2c38, #2c4356);
  border: 1px solid #456789;
  border-radius: 6px;
  color: #e0e0e0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.public-project-btn:hover {
  background: #3d566e;
  border-color: #D18F3A;
  transform: translateY(-2px);
}

.project-description {
  display: block;
  font-size: 0.85rem;
  color: #95a5a6;
  margin-top: 0.25rem;
}

.login-divider {
  position: relative;
  text-align: center;
  margin: 1.5rem 0;
}

.login-divider::before,
.login-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 45%;
  height: 1px;
  background: #456789;
}

.login-divider::before {
  left: 0;
}

.login-divider::after {
  right: 0;
}

.login-divider span {
  background: #2a2e35;
  padding: 0 1rem;
  color: #95a5a6;
  font-size: 0.9rem;
}

.copyright {
    position: fixed;
    bottom: 10px;
    right: 10px;
    font-size: 12px;
    color: #666;
    font-family: 'Raleway', sans-serif;
}

.copyright a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.copyright a:hover {
    color: #D18F3A;
}

/* ADD ONLY these modal styles to your existing login.css (don't replace anything) */

/* Modal Styles - ADD TO EXISTING CSS */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(8px);
  animation: modalOverlayFadeIn 0.3s ease;
}

@keyframes modalOverlayFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background: linear-gradient(135deg, #25292e, #383e47);
  border-radius: 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  padding: 2rem;
  max-width: 520px;
  width: 90%;
  color: #e0e0e0;
  position: relative;
  animation: modalSlideIn 0.4s ease;
  border: 1px solid #3a4149;
}

@keyframes modalSlideIn {
  from {
      opacity: 0;
      transform: translateY(-30px) scale(0.95);
  }
  to {
      opacity: 1;
      transform: translateY(0) scale(1);
  }
}

.modal-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #3a4149;
}

.modal-title {
  color: #D18F3A;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: 'Raleway', sans-serif;
}

.modal-subtitle {
  color: #b0b0b0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
}

/* .access-options {
  display: grid;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.access-option {
  background: linear-gradient(135deg, #32383f, #3a424a);
  border: 1px solid #3a4149;
  border-radius: 6px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  position: relative;
  overflow: hidden;
}
 */
.access-option::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(209, 143, 58, 0.1), rgba(209, 143, 58, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.access-option:hover::before {
  opacity: 1;
}

.access-option:hover {
  border-color: #A67C32;
  background: linear-gradient(135deg, #3a424a, #42494f);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.option-content {
  position: relative;
  z-index: 1;
}

.option-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.option-icon {
  width: 48px;
  height: 48px;
  margin-right: 1rem;
  color: #D18F3A;
  flex-shrink: 0;
}

.option-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #e0e0e0;
  margin: 0;
  font-family: 'Raleway', sans-serif;
}

.option-description {
  font-size: 0.9rem;
  color: #b0bec5;
  line-height: 1.5;
  margin: 0;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #95a5a6;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
  transition: all 0.2s ease;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: rgba(255,255,255,0.15);
  color: #e0e0e0;
  transform: scale(1.1);
}




/* Ajoutez ces styles à votre login.css pour que les options Map/Explorer aient le même style que les projets publics */

/* Style des options d'accès - même style que public-project-btn */
.access-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.access-option {
  display: block;
  padding: 0.75rem;
  background: linear-gradient(135deg, #1a2c38, #2c4356);
  border: 1px solid #456789;
  border-radius: 6px;
  color: #e0e0e0;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.access-option:hover {
  background: #3d566e;
  border-color: #D18F3A;
  transform: translateY(-2px);
}

.option-content {
  width: 100%;
}

.option-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.option-icon {
  width: 24px;
  height: 24px;
  color: #D18F3A;
  flex-shrink: 0;
}

.option-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #e0e0e0;
  margin: 0;
}

.option-description {
  font-size: 0.85rem;
  color: #95a5a6;
  line-height: 1.4;
  margin: 0;
}

/* Bouton de fermeture de la modal */
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: #95a5a6;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  transition: color 0.2s ease;
}

.modal-close:hover {
  color: #e74c3c;
}

/* Responsive pour les petits écrans */
@media (max-width: 568px) {
  .modal-content {
    margin: 1rem;
    padding: 1.5rem;
    max-width: none;
    width: calc(100% - 2rem);
  }
  
  .option-header {
    gap: 0.5rem;
  }
  
  .option-icon {
    width: 20px;
    height: 20px;
  }
  
  .option-title {
    font-size: 1rem;
  }
  
  .option-description {
    font-size: 0.8rem;
  }
}
















.cookie-policy-ribbon {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: #ecf0f1;
  padding: 6px 20px;
  font-size: 13px;
  text-align: center;
  border-top: 1px solid #456789;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  font-family: 'Raleway', sans-serif;
}

.cookie-policy-ribbon .policy-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-policy-ribbon .cookie-icon {
  width: 16px;
  height: 16px;
  fill: #D18F3A;
  flex-shrink: 0;
}

.cookie-policy-ribbon .highlight {
  color: #D18F3A;
  font-weight: 500;
}

@media (max-width: 768px) {
  .cookie-policy-ribbon {
      padding: 6px 15px;
      font-size: 11px;
  }
  
  .cookie-policy-ribbon .policy-text {
      flex-direction: column;
      gap: 4px;
  }
}