* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  height: 100vh;
  background: #f4f6f8;
}

.login-container {
  display: flex;
  height: 100vh;
}

/* LEFT IMAGE */
.image-side {
  flex: 1;
  background: url("../images/servicedesk1.png") center/contain no-repeat;
  position: relative;
}

.image-side .overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    to bottom right,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.25)
  );
  color: #fff; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
}

.image-side h1 {
  font-size: 48px;
  font-weight: 600;
}

.image-side p {
  font-size: 18px;
  margin-top: 15px;
  opacity: 0.9;
}

/* RIGHT FORM */
.form-side {
  flex: 1;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-box {
  width: 80%;
  max-width: 400px;
}

.form-box h2 {
  font-size: 32px;
  font-weight: 600;
}

.subtitle {
  margin-bottom: 30px;
  color: #666;
}

/* INPUTS */
.input-group {
  position: relative;
  margin-bottom: 25px;
}

.input-group input {
  width: 100%;
  padding: 14px 10px;
  border: none;
  border-bottom: 2px solid #ddd;
  font-size: 16px;
  outline: none;
  background: transparent;
}

.input-group label {
  position: absolute;
  top: 50%;
  left: 10px;
  color: #aaa;
  font-size: 14px;
  transform: translateY(-50%);
  pointer-events: none;
  transition: 0.3s;
}

.input-group input:focus + label,
.input-group input:valid + label {
  top: -8px;
  font-size: 12px;
  color: #3724b1;
}

/* OPTIONS */
.options {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 30px;
}

.options a {
  color: #3724b1;
  text-decoration: none;
}

/* BUTTON */
button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #3724b1, #3724b1);
  border: none;
  color: #fff;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  opacity: 0.9;
}

/* SIGNUP */
.signup {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

.signup a {
  color: #3724b1;
  text-decoration: none;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .image-side {
    display: none;
  }
  .form-side {
    flex: 1;
  }
}

.logout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff6f6f, #ff1a1a);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(255, 26, 26, 0.35);
  transition: all 0.3s ease;
  cursor: pointer;
}

.logout-btn i {
  font-size: 18px;
}

/* Hover effect */
.logout-btn:hover {
  background: linear-gradient(135deg, #ff1a1a, #ff4d4d);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 20px rgba(255, 26, 26, 0.45);
}
