body {
  background: linear-gradient(
    to bottom,
    rgba(44, 62, 80, 0.8) 0%,
    rgba(0, 210, 0, 0.5) 100%
  );
  background-size: cover;
  background-blend-mode: screen;
  background-color: #2c3e50;
}
/* Login Page Styles */
.login-page {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: "BPG Square", "Inter", sans-serif;
  overflow: hidden;
}
.login-background {
  background: url("../assets/images/background.jpg") no-repeat center center;
  background-size: 100% 100%;
  position: absolute;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background-position: center;
  top: 0;
  left: 0;
}

@media (max-width: 768px) {
  .login-background {
    background: none;
    background-size: cover;
    background-position: center;
  }
}

.login-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.login-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.language-selector-login {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
}

.language-selector-login .language-dropdown {
  position: relative;
}

.language-selector-login .language-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.language-selector-login .language-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.language-selector-login .language-options {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
}

.language-selector-login .language-options.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.login-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
  position: relative;
  z-index: 1;
}

.login-card {
  background: rgb(0 0 0 / 56%);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.login-logo {
  text-align: center;
  margin-bottom: 30px;
}

.login-logo img {
  max-width: 200px;
  height: auto;
}

.login-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.input-wrapper {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper i {
  position: absolute;
  left: 15px;
  color: #00d200;
  z-index: 2;
}

.input-wrapper input {
  width: 100%;
  padding: 15px 15px 15px 45px;
  border: 2px solid #e1e8ed;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: white;
}

.input-wrapper input:focus {
  outline: none;
  border-color: #00d200;
  box-shadow: 0 0 0 3px rgba(0, 210, 0, 0.1);
}

.password-toggle {
  position: absolute;
  right: 50px;
  top: 22px;
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  z-index: 2;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 10px;
}

.checkbox-container {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  color: #fff;
}

.checkbox-container input {
  margin-right: 8px;
}

.forgot-password {
  color: #00d200;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.forgot-password:hover {
  color: #00a000;
}

.login-btn {
  width: 100%;
  padding: 15px;
  font-family: "BPG Square";
  background: linear-gradient(135deg, #00d200, #00a000);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 210, 0, 0.3);
}

.contact-info {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid #e1e8ed;
}

.contact-info h3 {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
  text-align: center;
}

.contact-grid {
  display: grid;
  gap: 8px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.contact-item i {
  color: #00d200;
  width: 16px;
}

.contact-item a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #00d200;
}

.back-to-home {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
}

.back-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 15px;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  font-size: 14px;
}

.back-link:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.loading-spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid #00d200;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.notification-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2001;
}

.notification {
  background: white;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 300px;
  animation: slideIn 0.3s ease;
}

.notification.error {
  border-left: 4px solid #e74c3c;
}

.notification.success {
  border-left: 4px solid #00d200;
}

.notification button {
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  margin-left: auto;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Alert Styles */
.alert {
  padding: 12px 15px;
  margin-bottom: 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  animation: slideInAlert 0.3s ease;
}

.alert-error {
  background: #ffeaea;
  color: #d63031;
  border: 1px solid #fab1a0;
}

.alert-success {
  background: #d4edda;
  color: #00d200;
  border: 1px solid #00d200;
}

@keyframes slideInAlert {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .login-card {
    padding: 30px 20px;
    margin: 10px;
  }

  .form-options {
    flex-direction: column;
    align-items: flex-start;
  }

  .back-to-home {
    left: auto;
  }

  .language-selector-login {
    top: 10px;
    right: 10px;
  }
}
