* {
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  margin: 0;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100dvh;
  color: white;
}

.login-container {
  background-color: #111;
  padding: 60px 40px;
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
  width: 100%;
  max-width: 700px;
  text-align: center;
  font-size: 20px;
  min-height: 380px;
}


.login-container img {
  max-width: 120px;
  margin-bottom: 20px;
}

.login-container h2 {
  margin-bottom: 30px;
  font-weight: 600;
}

.input-group {
  margin-bottom: 20px;
  text-align: left;
}

.input-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
  color: #ccc;
}

.input-group input {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 6px;
  background-color: #222;
  color: white;
}

.login-button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 6px;
  background-color: #00bcd4;
  color: white;
  font-weight: bold;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.login-button:hover {
  background-color: #0097a7;
}

.footer-text {
  margin-top: 20px;
  font-size: 14px;
  color: #888;
}


.forgot-password {
  margin-top: 10px;
  font-size: 16px;
}

.forgot-password a {
  color: #00bcd4;
  text-decoration: none;
}

.forgot-password a:hover {
  text-decoration: underline;
}

/* Popup styling */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.popup-content {
  background-color: #222;
  padding: 20px 30px;
  border-radius: 10px;
  color: white;
  text-align: center;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

.popup-content button {
  margin-top: 15px;
  padding: 8px 16px;
  background-color: #00bcd4;
  border: none;
  border-radius: 6px;
  color: white;
  cursor: pointer;
}



@media (max-width: 768px) {
  .login-container {
    width: 100%;
    padding: 30px 20px;
  }

  .login-container img {
    max-width: 100px;
  }

  .login-container h2 {
    font-size: 20px;
  }

  .input-group input {
    padding: 14px;
    font-size: 18px;
  }

  .login-button {
    padding: 14px;
    font-size: 19px;
  }

  .popup-content {
    width: 90%;
    font-size: 17px;
  }

  .popup-content button {
    padding: 10px 20px;
    font-size: 17px;
  }
}
