/* Login Page Specific Styles */
body {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
}

html {
  height: 100%;
}

.container {
  width: 100%;
  max-width: 1100px;
  padding: 20px 30px;
  margin: 0 20px;
}

.logo-container {
  text-align: center;
  margin-bottom: 37px;
}

.logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  background: radial-gradient(
    circle,
    rgba(243, 198, 35, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.company-name {
  color: var(--color-primary);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  text-shadow: 0 2px 10px rgba(243, 198, 35, 0.2);
}

.page-title {
  color: #ffffffcc;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
}

.login-card {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(243, 198, 35, 0.3);
  border-radius: 16px;
  padding: 40px 35px;
  margin: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 60px rgba(243, 198, 35, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.login-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #f3c623, transparent);
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group label {
  display: block;
  color: #ffffffcc;
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 500;
}

.input-wrapper {
  position: relative;
}

.input-wrapper input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.5);
  border: 1.5px solid rgba(243, 198, 35, 0.4);
  border-radius: 8px;
  color: #ffffff;
  font-size: 15px;
  transition: all 0.3s ease;
  outline: none;
}

.input-wrapper input:focus {
  border-color: #f3c623;
  box-shadow: 0 0 20px rgba(243, 198, 35, 0.2);
  background: rgba(0, 0, 0, 0.7);
}

.input-wrapper input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.login-button {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #ffdf6d 0%, #f3c623 100%);
  border: none;
  border-radius: 8px;
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  box-shadow: 0 4px 15px rgba(243, 198, 35, 0.3);
  position: relative;
  overflow: hidden;
}

.login-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.login-button:hover::before {
  width: 300px;
  height: 300px;
}

.login-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(243, 198, 35, 0.5);
}

.login-button:active {
  transform: translateY(0);
}

.button-text {
  position: relative;
  z-index: 1;
}

/* Animations */
@keyframes slideDown {
  from {
    transform: translateX(-50%) translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  to {
    transform: translateX(-50%) translateY(-100%);
    opacity: 0;
  }
}

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

  .login-card {
    padding: 30px 25px;
    margin: 0;
  }

  .company-name {
    font-size: 18px;
  }

  .page-title {
    font-size: 14px;
  }

  .logo {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 400px) {
  .container {
    padding: 20px 15px;
  }

  .login-card {
    padding: 25px 20px;
    margin: 0;
  }

  .company-name {
    font-size: 16px;
  }
}
