/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #f9fafb;
  color: #1f2937;
}

/* CONTAINER */
.login-container {
  display: flex;
  height: 100vh;
  width: 100%;
}

/* LEFT */
.login-left {
  flex: 1;
  background: #0f766e;  
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  padding: 2.5rem;
  text-align: center;
}

.login-left .logo {
  width: 120px;
  margin-bottom: 1.5rem;
      font-size:1.4rem;
      font-weight:700;
      color:black;
    
}
.login-left span{
      color:#1be9d8;
}

.login-left h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.login-left p {
  font-size: 1rem;
  max-width: 360px;
  line-height: 1.6;
  color: #e5e7eb;
}

/* RIGHT */
.login-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.login-form {
  width: 100%;
  max-width: 420px;
  background-color: #ffffff;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  text-align: center;
}

.login-form h2 {
  color: #1f2937;
  margin-bottom: 2rem;
  font-size: 1.6rem;
}

/* INPUTS */
.input-group {
  position: relative;
  margin-bottom: 1.3rem;
}

.input-group i {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: #9ca3af;
}

.input-group input,
.input-group select {
  width: 100%;
  padding: 0.9rem 0.9rem 0.9rem 2.7rem;
  border-radius: 30px;
  border: 1px solid #d1d5db;
  font-size: 0.95rem;
  outline: none;
}

.input-group input:focus,
.input-group select:focus {
  border-color:  #0f766e;
}

/* BUTTON */
.login-btn {
  width: 100%;
  padding: 0.9rem;
  background-color:  #0f766e;
  color: #fff;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.login-btn:hover {
  background-color:  #0f766e;
}

/* LOCATION */
.location-btn {
  background: #1f2937;
  color: #fff;
  padding: 10px 15px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  width: 85%;
  margin-top: 10px;
}

.location-btn:hover {
  background: #111827;
}
.map-modal { display: none; 
  position: fixed;
   top: 0;
   left: 0;
   width: 100%; 
  height: 100%; 
  background: rgba(0,0,0,0.6);
   backdrop-filter: blur(3px);
   justify-content: center;
   align-items: center;
   z-index: 9999; 
} 
.map-box {
   width: 90%;
   max-width: 500px;
   background: #fff; 
  padding: 20px; border-radius: 12px; 
}
 #map {
   width: 100%;
   height: 300px;
   margin-top: 10px;
   border-radius: 10px;
 } 
 .coords-display {
   margin: 10px 0;
   text-align: center;
   font-weight: bold; 
}

.buttons{
   margin-top: 25px;
   display: flex;
   gap:10px;
 }
/* LINKS */
.signup-link {
  margin-top: 1.2rem;
  font-size: 0.9rem;
}

.signup-link a {
  color:  #0f766e;
  text-decoration: none;
}

.signup-link a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .login-container {
    flex-direction: column;
  }

  .login-left {
    padding: 1.5rem;
  }

  .login-left h1 {
    font-size: 1.8rem;
  }
}
