.login-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.login-wrapper {
  display: flex;
  max-width: 1200px;
  width: 100%;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  min-height: 600px;
}

.usefulinfo-section {
  flex: 1;
  align-items: center;
  color: white;
  position: relative;
}

.usefulinfo-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="50" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="30" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.login-logo {
  text-align: center;
}

.login-logo img {
  width: 250px;
}

.info-content {
  text-align: center;
  z-index: 1;
  position: relative;
}

.winmedia-login-info-box,
.winmedia-login-info-box iframe {
  width: 100%;
  border: none;
  overflow: hidden;
}

.info-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.info-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.6;
}

.info-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.info-features li {
  padding: 10px 0;
  font-size: 1.1rem;
  opacity: 0.9;
}

.info-features li::before {
  content: "✓";
  margin-right: 10px;
  font-weight: bold;
  color: #4caf50;
}

.login-section {
  flex: 1;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content {
  width: 100%;
}

.block {
  border: none;
  box-shadow: none;
  background: transparent;
}

.block-header {
  background: linear-gradient(to right, #e94963, #ed7951, #f29c42);
  border-radius: 10px 10px 0 0;
  padding: 20px;
  margin-bottom: 0;
}

.block-title {
  color: white !important;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  text-align: center;
}

.block-content {
  padding: 30px 20px;
  background: #f8f9fa;
  border-radius: 0 0 10px 10px;
}

.h2 {
  text-align: center;
  color: #333;
  font-weight: 600;
  margin-bottom: 30px;
}

.form-material {
  margin-bottom: 25px;
}

.form-control {
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-material label {
  color: #666;
  font-weight: 500;
}

.btn-primary {
  background: linear-gradient(to right, #e94963, #ed7951, #f29c42);
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.css-input {
  margin-bottom: 15px;
}

.help-block {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-text {
  text-align: center;
  margin-top: 30px;
  color: #666;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .login-wrapper {
    flex-direction: column;
    margin: 10px;
  }

  .usefulinfo-section {
    min-height: 200px;
  }

  .info-title {
    font-size: 1.8rem;
  }

  .info-subtitle {
    font-size: 1rem;
  }

  .content {
    padding: 20px;
  }
}

/* Animation enhancements */
.animated {
  animation-duration: 0.8s;
}

.fadeIn {
  animation-name: fadeIn;
}

.fadeInDown {
  animation-name: fadeInDown;
}

.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
