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

.login-wrapper {
  display: flex;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.header-sec {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  padding: 15px 30px;
  z-index: 10;
  background: transparent;
}

.hd-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone,
.email {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 16px;
}

.phone a,
.email a {
  text-decoration: none;
  color: #fff;
  font-size: 15px;
}

.logo img {
  width: 180px;
}

.left-panel {
  flex: 1;
  background: url("../assets/background1.jpg") no-repeat center center;
  background-size: cover;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px 60px 40px;
  position: relative;
}

.left-content h1 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 18px;
}

.left-content p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 35px;
  max-width: 480px;
}

.working-hours {
  max-width: 380px;
  padding: 20px 25px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  margin-bottom: 40px;
}

.working-hours h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  color: #fff;
}

.working-hours ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.working-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 6px;
  position: relative;
  padding-left: 16px;
}

.working-hours li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 50%;
}

.ft-link {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ft-link a {
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  color: #fff;
  opacity: 0.8;
  transition: 0.3s;
}

.ft-link a:hover {
  opacity: 1;
  color: #00b4ff;
}

.right-content {
  flex: 1;
  background: url("../assets/bg2.jpg") no-repeat center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  padding-top: 100px;
}

.wishing-compnt img {
  width: 420px;
  height: 140px;
  border-radius: 20px;
  object-fit: cover;
  margin-bottom: 25px;
}

.right-content form {
  width: 100%;
  max-width: 420px;
  padding: 40px;
  border-radius: 16px;
  background: radial-gradient(
    circle at top left,
    rgba(255, 255, 255, 0.35),
    rgba(101, 161, 198, 0.2)
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-head h2 {
  font-weight: 600;
  color: #0a2a72;
  font-size: 24px;
  margin-bottom: 6px;
}

.form-head p {
  font-size: 14px;
  color: #555;
  margin-bottom: 25px;
}

.form-group {
  position: relative;
  margin-bottom: 22px;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(180, 180, 180, 0.4);
  border-radius: 8px;
  outline: none;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  color: #0a2a72;
}

.form-control::placeholder {
  color: transparent;
}

.form-label {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  font-size: 14px;
  color: #555;
  transition: all 0.3s ease;
  pointer-events: none;
}

.form-control:focus + .form-label,
.form-control:not(:placeholder-shown) + .form-label {
  top: -8px;
  left: 10px;
  font-size: 12px;
  color: #1e63a4;
  background: rgba(255, 255, 255, 0.85);
  padding: 0 5px;
  border-radius: 4px;
}

.form-control:focus {
  border-color: #1e63a4;
  background: rgba(255, 255, 255, 0.4);
}

button[type="submit"] {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #0a2a72, #00b4ff);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: 0.4s ease;
  margin-top: 10px;
}

button[type="submit"]:hover {
  background: linear-gradient(135deg, #00b4ff, #0a2a72);
}

.right-content a {
  color: #0a2a72;
  text-decoration: none;
  font-size: 14px;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.right-content a i {
  color: #0a2a72;
  font-size: 16px;
  vertical-align: middle;
}

.app-download {
  color: #0a2a72;
  text-decoration: none;
  font-size: 14px;
}

@media (max-width: 600px) {
  html,
  body {
    overflow-y: auto;
  }

  .header-sec .container {
    padding-left: 0px !important;
  }

  .left-content {
    padding: 10px 10px !important;
  }

  .login-wrapper {
    flex-direction: column;
    height: auto;
  }

  .hd-row {
    gap: 20px;
  }

  .logo img {
    width: 130px;
  }
  .phone a,
  .email a {
    font-size: 11px;
  }
  .phone i,
  .email i {
    font-size: 11px;
  }
  .left-panel,
  .right-content {
    flex: none;
    width: 100%;
    height: auto;
    padding: 20px 20px;
  }

  .header-sec {
    position: relative;
    padding: 10px 20px;
  }

  .left-content h1 {
    font-size: 33px;
  }

  .wishing-compnt img {
    width: 380px;
  }
}
