@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

body {
  background: linear-gradient(135deg, #e6f3ff 0%, #ffffff 100%);
  min-height: 100vh;
  padding-top: 80px;
  font-family: "Roboto", serif;
}
/* Navbar Styles */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
}

.navbar-brand img {
  height: 55px;
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.05);
}

.main-container {
  min-height: calc(100vh - 80px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.login-container {
  max-width: 1000px;
  width: 100%;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 0.8s ease-out;
}

.form-container {
  display: flex;
  flex-direction: row;
}

/* Image Section */
.image-section {
  flex: 1;
  background: linear-gradient(45deg, #007bff, #00bfff);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.image-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("/favicon_io/android-chrome-512x512.png") center/cover;
  opacity: 0.2;
  animation: pulse 3s infinite;
}

.image-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.image-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease-out;
}

/* Form Section */
.form-section {
  flex: 1;
  padding: 40px;
  background: white;
}

.form-control {
  border-radius: 10px;
  padding: 12px;
  border: 1px solid #e1e1e1;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.15);
}

.input-group-text {
  border-radius: 10px 0 0 10px;
  background-color: #f8f9fa;
  border: 1px solid #e1e1e1;
  padding: 12px;
}

.btn-primary {
  padding: 12px;
  border-radius: 10px;
  background: linear-gradient(45deg, #007bff, #00bfff);
  border: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.forgot-password {
  color: #6c757d;
  text-decoration: none;
  transition: all 0.3s ease;
}

.forgot-password:hover {
  color: #007bff;
  text-decoration: underline;
}

/* Animations */
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }

  100% {
    transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .form-container {
    flex-direction: column;
  }

  .image-section {
    padding: 60px 20px;
  }

  .image-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  body {
    padding-top: 60px;
  }

  .navbar-brand {
    font-size: 0.9rem;
  }

  .form-section {
    padding: 20px;
  }

  .image-section {
    padding: 40px 20px;
  }

  .image-content h2 {
    font-size: 1.5rem;
  }
}
