body {
  margin: 0px;
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: linear-gradient(145deg, #e8eafc, #f9f9fc);
  overflow: hidden;
}

.container {
  text-align: center;
  width: 90%;
  max-width: 350px;
  padding: 20px;
  animation: fadeIn 1.5s ease-in;
  position: relative;
  z-index: 1;
}

h1 {
  color: #6b6bd1;
  font-size: 28px;
  margin: 20px 0 10px;
  animation: fadeUp 1s ease-in;
}

h2 {
  font-size: 20px;
  color: #333;
  animation: fadeUp 1.2s ease-in;
}

.tagline {
  font-size: 14px;
  color: #888;
  margin-bottom: 30px;
  line-height: 1.4;
  animation: fadeUp 1.3s ease-in;
}

.clock-shape, .mini-clock {
  width: 140px;
  height: 70px;
  border-radius: 50px;
  margin: 0 auto 20px;
  background: linear-gradient(90deg, #b0c4f7, #d4ccf2);
  position: relative;
  box-shadow: inset -3px -3px 8px #c9d4fb, inset 3px 3px 8px #aebaf7;
  animation: fadeUp 1.5s ease-in;
}

.clock-shape::before,
.mini-clock::before {
  content: "";
  position: absolute;
  background: #333;
  width: 4px;
  height: 22px;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.clock-shape::after,
.mini-clock::after {
  content: "";
  position: absolute;
  background: #333;
  width: 24px;
  height: 4px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(40deg);
  border-radius: 2px;
}

.clock-shape::before,
.clock-shape::after,
.clock-shape {
  z-index: 2;
}

.clock-shape::after,
.clock-shape::before {
  animation: tick 2s infinite ease-in-out alternate;
}

.clock-bg-circle {
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(108, 115, 230, 0.1);
  border-radius: 50%;
  top: -50px;
  left: -30px;
  z-index: 0;
  animation: float 6s ease-in-out infinite alternate;
}

.clock-bg-circle2 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(139, 143, 241, 0.07);
  border-radius: 50%;
  bottom: -100px;
  right: -60px;
  z-index: 0;
  animation: float 8s ease-in-out infinite alternate-reverse;
}

.button {
  display: inline-block;
  margin: 10px;
  padding: 12px 30px;
  font-size: 16px;
  color: white;
  background: linear-gradient(to bottom, #6b6bd1, #4e52c7);
  border: none;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 4px #aaa;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
  animation: fadeUp 1.6s ease-in;
}

.button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-20deg);
  transition: 0.3s;
}

.button:hover::after {
  left: 130%;
  transition: 0.5s ease-in-out;
}

.button:hover {
  background-color: #474fcf;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 6px #888;
}

.input-field {
  display: block;
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 20px;
  font-size: 14px;
  outline: none;
  animation: fadeUp 1.7s ease-in;
}

.language-dropdown {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border-radius: 20px;
  border: 1px solid #ccc;
  margin-bottom: 20px;
  animation: fadeUp 1.8s ease-in;
}

.button-group {
  display: flex;
  justify-content: space-around;
  gap: 10px;
}

.link {
  color: #5c62ec;
  text-decoration: none;
  font-weight: 600;
}

.forgot-link {
  display: block;
  margin-bottom: 15px;
  color: #5c62ec;
  font-size: 14px;
}

.doctors-image {
  height: 150px;
  background: url('doctors.png') no-repeat center;
  background-size: contain;
  margin-bottom: 20px;
  animation: fadeUp 2s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0% { transform: translateY(0); }
  100% { transform: translateY(20px); }
}

@keyframes tick {
  0% { transform: translateX(-50%) rotate(40deg); }
  100% { transform: translateX(-50%) rotate(100deg); }
}

@media (min-width: 600px) {
  .container {
    max-width: 500px;
    padding: 30px;
  }

  h1 {
    font-size: 32px;
  }

  .clock-shape, .mini-clock {
    width: 160px;
    height: 80px;
  }

  .button {
    font-size: 18px;
    padding: 14px 40px;
  }

  .input-field {
    font-size: 16px;
  }
}

@media (min-width: 900px) {
  .container {
    max-width: 600px;
    padding: 40px;
  }

  h1 {
    font-size: 36px;
  }

  .tagline {
    font-size: 16px;
  }

  .clock-shape, .mini-clock {
    width: 180px;
    height: 90px;
  }

  .button {
    font-size: 20px;
    padding: 16px 50px;
  }

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

