body {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  padding: 0px !important;
  font-weight: 400;
  top: 0px !important;
}
/* Ẩn giao diện Google mặc định */
#google_translate_element {
  display: none;
}

/* Ẩn giao diện Google popup */
.goog-te-banner-frame.skiptranslate,
body > .skiptranslate {
  display: none !important;
}

.top-bar {
  text-align: center;
  background-color: #3f3f3f;
  width: 100%;
}

.website-link {
  display: inline-block;
  color: #ffc10e;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
}

.website-link:hover {
  color: #000;
  background: #ffc10e;
}

.website-link i {
  margin-right: 0.5rem;
}

.section-login {
  display: flex;
  min-height: 100vh;
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Left Section - Services */
.left-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  background: url(../images/bg.jpg) no-repeat right bottom;
  background-size: cover;
}
.left-section::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.3);
}

.services-container {
  position: relative;
  max-width: 800px;
  width: 100%;
}

/* Main Logo */
.main-logo {
  position: absolute;
  left: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  z-index: 10;
  padding: 2px;
  border: 3px solid #fff;
}

.main-logo img {
  position: relative;
  width: 100%;
  animation: spin 5s linear infinite;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Services Grid */
.services-grid {
  display: grid;
  padding-left: 150px;
}

.service-item {
  transition: transform 0.3s ease;
  transform-origin: center;
}

.services-grid a:hover .service-item {
  transform: scale(1.02);
}

/* Đảm bảo text không bị mờ khi scale */
.services-grid svg text {
  pointer-events: none;
}

/* Right Section - Login */
.right-section {
  width: 40%;
  background: rgba(255, 255, 255, 0.95);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* Header */
.header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.logo {
}

.language {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #666;
  font-size: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 50px;
  padding: 5px 5px 5px 10px;
}
#languageSelect {
  border: 0px;
  outline: none !important;
  box-shadow: none !important;
}

/* Welcome Section */
.welcome {
  margin-bottom: 2rem;
}

.welcome h1 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.welcome p {
  color: #666;
  font-size: 0.9rem;
}

/* Form */
.login-form {
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 500;
}

.form-group input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #ffc107;
}

.password-group {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
}

.forgot-password {
  text-align: right;
  margin-bottom: 1rem;
}

.forgot-password a {
  text-decoration: none;
  font-size: 0.9rem;
}

.forgot-password a:hover {
  text-decoration: underline;
}

.remember-me {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: #666;
}

.remember-me input {
  margin-right: 0.5rem;
}

.login-btn {
  width: 100%;
  background: #ffc107;
  color: #333;
  border: none;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.login-btn:hover {
  transform: translateY(-2px);
}

/* Social Links */
.social-share {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: #666;
}

.social-links {
  display: flex;
  gap: 0.5rem;
}

.social-links a {
  color: #666;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #ffc107;
}

/* Footer */
.footer {
  position: absolute;
  bottom: 1rem;
  right: 2rem;
  font-size: 0.8rem;
  color: #999;
  text-align: right;
}

.footer a {
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .main-logo {
    left: -80px;
    width: 160px;
    height: 160px;
  }

  .main-logo .logo-text {
    font-size: 3rem;
  }

  .services-grid {
    padding-left: 120px;
  }
}

@media (max-width: 968px) {
  .section-login {
    flex-direction: column;
  }

  .left-section {
    order: 2;
    padding: 1rem;
  }

  .right-section {
    order: 1;
    width: 100%;
    padding: 2rem 1rem;
  }

  .main-logo {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
  }

  .main-logo img {
    animation: none;
  }

  .services-grid {
    padding-left: 0;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-item {
    padding: 1rem;
  }

  .service-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .right-section {
    padding: 1.5rem 1rem;
  }

  .welcome h1 {
    font-size: 1.5rem;
  }
}
