* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  background: linear-gradient(-45deg, #0a58ca, #041c4a, #003366, #004488);
  background-size: 400% 400%;
  animation: gradientAnimation 10s ease infinite;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

@keyframes gradientAnimation {
  0% {
      background-position: 0% 50%;
  }

  50% {
      background-position: 100% 50%;
  }

  100% {
      background-position: 0% 50%;
  }
}

/* Container */
.container {
  display: flex;
  background: #ffffff;
  width: 90%;
  max-width: 900px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  position: relative;
}

/* Left Section */
.left-section {
  flex: 1.3;
  background: linear-gradient(135deg, #0a58ca, #003366);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
  overflow: hidden;
}

/* .left-section h3 {
  font-size: 40px;
  font-weight: bold;
  z-index: 2;
} */
.left-section img {
  z-index: 2;
}

@keyframes pulse {
  0% {
      transform: scale(1);
      text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
  }

  25% {
      transform: scale(1.05);
      text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
  }
  50% {
      transform: scale(1.5);
      text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
  }
  75% {
      transform: scale(1.2);
      text-shadow: 0 0 25px rgba(255, 255, 255, 0.8);
  }

  100% {
      transform: scale(1);
      text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
  }
}

.left-section::before,
.left-section::after,
.left-section .circle2{
  content: "";
  position: absolute;
  background: linear-gradient(135deg, #0a85ff, #003366);
  border-radius: 50%;
  opacity: 0.6;
  z-index: 0;
}

.glow-circle {
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 2s infinite alternate;
}

.left-section::before {
  width: 150px;
  height: 150px;
  bottom: -50px;
  left: -50px;
}

.left-section::after {
  width: 100px;
  height: 100px;
  top: -30px;
  right: -30px;
}

/* Additional Circles */

.left-section .circle2 {
  width: 200px;
  height: 200px;
  bottom: -80px;
  right: -60px;
}

@keyframes float {
  0% {
      transform: translateY(0);
  }

  100% {
      transform: translateY(20px);
  }
}

/* Right Section */
.right-section {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: slideIn 1.5s ease-in-out;
}

@keyframes slideIn {
  from {
      transform: translateX(50px);
      opacity: 0;
  }

  to {
      transform: translateX(0);
      opacity: 1;
  }
}

.right-section h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  color: #003366;
}

.input-group {
  position: relative;
  margin-bottom: 20px;
}

.input-group input {
  width: 100%;
  padding: 12px 40px 12px 12px;
  /* Adjust padding for icons */
  font-size: 16px;
  border: 2px solid #0a58ca;
  border-radius: 8px;
  outline: none;
  transition: box-shadow 0.3s ease-in-out;
}

.input-group input:focus {
  box-shadow: 0 0 10px rgba(10, 88, 202, 0.8);
  border-color: #003366;
}

.input-group .icon {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 18px;
  cursor: pointer;
  color: #0a58ca;
}

button {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
  transition: transform 0.2s ease;
}

.login-btn {
  background: linear-gradient(135deg, #0a58ca, #003366);
}

.login-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 88, 202, 0.6);
}

.guest-btn {
  background: #ddd;
  color: #333;
}

.guest-btn:hover {
  background: #bbb;
  transform: scale(1.02);
}

/* Styling for the "Remember Me" Checkbox Inline */
.remember-me {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 16px;
  color: #333;
}

.remember-me input[type="checkbox"] {
  appearance: none;
  padding: 8px !important;
  width: 15px;
  height: 15px;
  border: 2px solid #0a58ca;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  transition: background 0.3s, border-color 0.3s;
}

.remember-me input[type="checkbox"]:checked {
  background: linear-gradient(135deg, #0a58ca, #003366);
  border-color: #003366;
}

.remember-me input[type="checkbox"]:checked::before {
  content: '✔';
  font-size: 14px;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
}

.checkbox-label {
  cursor: pointer;
}

/* Forgot Password Link */
.forgot-password {
  margin-top: 25px;
  text-align: right;
  font-size: 14px;
}

.forgot-password a {
  color: #003366;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.forgot-password a:hover {
  color: #003366;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
      flex-direction: column;
  }

  .left-section {
      padding: 30px;
  }

  .left-section h3 {
      font-size: 30px;
  }

  .right-section {
      padding: 20px;
  }

  .remember-me {
      font-size: 14px;
      gap: 8px;
  }

  .remember-me input[type="checkbox"] {
      width: 18px;
      height: 18px;
  }
}


.circle_a {
  width: 180px;
  height: 180px;
  border-radius: 100%;
  border: 3px solid #1a6dbe;
  background: transparent;
  position: absolute;
  top: -70px;
  left: -70px;
  z-index: 1;
  animation: circle_rotate linear 5s infinite;
}
@-webkit-keyframes circle_rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.circle_a::after {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 100%;
  display: block;
  border: 4px solid #da9716;
  position: absolute;
  top: 81px;
  right: -14px;
} 