@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

.luxury-login-container {
  min-height: 100vh;
  background: #000;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.main-content {
    flex: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
  }

.luxury-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 4rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.nav-brand {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.nav-links a:hover {
  opacity: 1;
}

.login-content {
  display: flex;
  padding: 4rem;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.login-left {
  flex: 1;
  padding-top: 4rem;
}

.login-left h1 {
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #FFA500, #FF8C00);
  -webkit-background-clip: text; /* For Safari/Chrome */
  background-clip: text; /* Standard */
  -webkit-text-fill-color: transparent; /* For Safari/Chrome */
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: 1.2rem;
  opacity: 0.7;
}

.login-form-container {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  padding: 3rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.luxury-input {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.luxury-input:focus {
  outline: none;
  border-color: #FFA500;
  background: rgba(255, 255, 255, 0.15);
}

.radio-group {
  margin: 2rem 0;
}

.radio-label {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  cursor: pointer;
}

.radio-custom {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
  transition: all 0.3s ease;
}

.radio-label input:checked + .radio-custom {
  border-color: #FFA500;
}

.luxury-button {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #FFA500, #FF8C00);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.luxury-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 165, 0, 0.2);
}

.error-message {
  color: #ff4444;
  margin-bottom: 1rem;
  text-align: center;
}

.page-wrapper {
  min-height: 100vh;
  width: 100%;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #f6f9fc 0%, #edf2f7 100%);
}

.main-content {
  flex: 1;
  width: 100%;
}

.hero-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 10%;
  background: linear-gradient(135deg, #FFA500, #FF8C00);
  min-height: 80vh;
}

.login-hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6rem 2rem;
  min-height: calc(100vh - 80px);
}

.login-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f6f9fc 0%, #edf2f7 100%);
  padding: 2rem;
}

.login-card {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 500px;
}

.login-card h1 {
  color: #2d3748;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.subtitle {
  color: #718096;
  text-align: center;
  margin-bottom: 2rem;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.input-group {
  position: relative;
}

.login-input {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.2s;
}

.login-input:focus {
  outline: none;
  border-color: #4299e1;
  box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

.role-selection {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 12px;
}

.role-selection h3 {
  color: #2d3748;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.role-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.role-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}
  
.role-card:hover {
    transform: translateY(-2px);
    border-color: #4299e1;
}
  
.role-card.selected {
    border-color: #4299e1; /* Persist the border */
    background: #ebf8ff;  /* Persist the background */
}
  
.role-card input[type="radio"] {
  display: none;
}

.role-icon {
  font-size: 2rem;
  color: #4299e1;
  margin-bottom: 0.5rem;
}

.role-card span {
  color: #2d3748;
  font-size: 0.9rem;
  text-align: center;
}

.login-button {
  background: #4299e1;
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.login-button:hover {
  background: #3182ce;
  transform: translateY(-1px);
}

.error-message {
  color: #e53e3e;
  text-align: center;
  font-size: 0.9rem;
}

@media (max-width: 640px) {
  .login-card {
    padding: 2rem;
  }
  
  .role-options {
    grid-template-columns: 1fr;
  }
}


.landing-footer {
    background-color: #000000;
    color: #ffffff;
    padding: 2rem 0;
    margin-top: auto;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-section {
    flex: 1;
    margin: 0 1rem;
    min-width: 200px;
  }
  
  .footer-section h3 {
    margin-bottom: 1rem;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
  }
  

  .progress-bar {
    position: relative;
    height: 5px;
    width: 100%;
    background: #e2e8f0;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.progress-bar .bar {
    width: 0;
    height: 100%;
    background: #4299e1;
    animation: progress 2s linear infinite;
}

@keyframes progress {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}


.custom-alert {
    display: none;
    padding: 15px;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
    margin: 10px 0;
    font-size: 14px;
    position: relative;
  }
  
  .custom-alert.show {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
  }
  
  .custom-alert .close-btn {
    position: absolute;
    right: 10px;
    top: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    color: #721c24;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
