@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

.login-container {
  display: flex;
  min-height: 100vh;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.image-section {
  color: white;
  height: 100vh;
  position: relative;
  overflow: hidden;
  flex: 0 0 40%;
}

.image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2;
}

.typing-text-container {
  position: absolute;
  bottom: 340px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 3;
}

.typing-text {
  color: white;
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 1px;
}

.cursor {
  display: inline-block;
  width: 2px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.testimonial-box {
  position: absolute;
  bottom: 120px;
  left: 30px;
  right: 30px;
  background-color: rgba(70, 70, 70, 0.3);
  border-radius: 10px;
  padding: 20px;
  z-index: 3;
  backdrop-filter: blur(5px);
}

.quote-mark {
  position: absolute;
  top: 30px;
  left: 15px;
  font-size: 48px;
  color: #f2795c;
  opacity: 0.7;
  font-family: Georgia, serif;
}

.quote-mark:before {
  content: '"';
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  padding-left: 20px;
  position: relative;
}

.testimonial-content p {
  margin: 0 0 15px;
  font-size: 14px;
  line-height: 1.5;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: relative;
  margin-right: 10px;
  background: white;
  object-fit: contain;
}

.testimonial-author span {
  font-weight: 600;
  font-size: 14px;
}

.rating-stars {
  color: #ffca00;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.login-section {
  flex: 0 0 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background-color: white;
}

.welcome-logo {
  font-size: 24px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}

.welcome-logo img {
  width: 75%;
  max-width: 200px;
}

.login-content {
  width: 100%;
  max-width: 500px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 40px;
}

.login-header {
  text-align: center;
  margin-bottom: 32px;
}

.login-header h1 {
  font-size: 28px;
  color: #333;
  margin-bottom: 8px;
}

.login-header p {
  color: #666;
  font-size: 16px;
}

.input-group {
  margin-bottom: 24px;
  width: 100%;
}

.input-group input {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  background: #f9f9f9;
  transition:
    border-color 0.3s,
    background-color 0.3s;
  box-sizing: border-box;
}

.input-group input:focus {
  border-color: #0035fc;
  outline: none;
  background: white;
}

.input-group input.error {
  border-color: #e74c3c;
  background-color: #ffebee;
}

.login-button {
  width: 100%;
  padding: 16px;
  background: #0035fc;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.login-button:hover {
  background: #0035fc;
}

@media (max-width: 768px) {
  .login-container {
    flex-direction: column;
    justify-content: center;
  }

  .image-section {
    display: none;
  }

  .login-section {
    flex: none;
    padding: 40px 20px;
  }

  .login-content {
    padding: 30px 20px;
  }
}
