body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url("images/background.png") no-repeat center center/cover;
  overflow: hidden;
}

.overlay {
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 50px;
  box-sizing: border-box;
  position: relative;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.navbar h2 {
  color: #fff;
  font-size: 32px;
  letter-spacing: 2px;
}

.menu-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  position: absolute;
  right: 0;
}

.menu-buttons button {
  background: #2ecc71;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  transition: 0.3s ease;
  white-space: nowrap;
}

.menu-buttons button:hover {
  background: #27ae60;
}

/* Login Container */

.login-container {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.08);
  padding: 40px 30px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  text-align: center;
  color: #fff;
  max-width: 350px;
  width: 100%;
}

.login-container h1 {
  font-size: 32px;
  margin-bottom: 25px;
}

.login-container input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: none;
  border-radius: 8px;
  font-size: 16px;
}

.login-btn {
  background: #2ecc71;
  color: #fff;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s ease;
}

.login-btn:hover {
  background: #27ae60;
}

.forgot {
  display: block;
  margin-top: 12px;
  color: #ddd;
  text-decoration: none;
  font-size: 14px;
}

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

.signup-text {
  margin-top: 18px;
  font-size: 14px;
  color: #ccc;
}

.signup-text a {
  color: #2ecc71;
  text-decoration: none;
}

.signup-text a:hover {
  text-decoration: underline;
}

.or-text {
  color: #ddd;
  margin: 14px 0 10px;
  font-size: 14px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 16px;
  width: 100%;
  margin-bottom: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.social-btn i {
  margin-right: 10px;
  font-size: 18px;
}

.social-btn:hover {
  background: rgba(255,255,255,0.12);
}

.google {
  border-color: #db4437;
}

.facebook {
  border-color: #1877f2;
}
