body {
  background: var(--theme-header);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.login-container {
  background: var(--theme-content);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px var(--theme-header);
  text-align: center;
  max-width: 350px;
  width: 100%;
  backdrop-filter: blur(8px);
}

.login-logo img {
  width: 180px;
  margin-bottom: 20px;
}

.login-container h3 {
  color: var(--text-color);
  margin-bottom: 20px;
}

.form-control {
  background: var(--theme-row);
  border: none !important;
  color: var(--text-color);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-control:-webkit-autofill,
.form-control:-webkit-autofill:hover,
.form-control:-webkit-autofill:focus,
.form-control:-webkit-autofill:active {
  background: var(--theme-row) !important;
  color: var(--text-color) !important;
  -webkit-text-fill-color: var(--text-color) !important;
  -webkit-box-shadow: 0 0 0px 1000px var(--theme-row) inset !important;
  transition: background-color 5000s ease-in-out 0s;
}

.btn-login {
  outline: none !important;
  background: var(--color-customer);
  color: var(--text-color);
  border: none;
  padding: 10px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
  width: 100%;
}

.btn-login:hover {
  color: var(--text-color);
  background: #e25502;
}

.alert-danger {
  padding: 10px 15px;
  border-radius: 5px;
  position: fixed;
  top: 20px;
  right: -300px;
  z-index: 1000;
  opacity: 1;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  transform: translateX(100%);
  display: flex;
  align-items: center;
  gap: 10px;
}

.alert-show {
  transform: translateX(0);
  right: 20px;
}

.alert-danger i {
  font-size: 18px;
}

.form-control:focus {
  border-color: var(--color-customer) !important;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
  0 0 8px rgba(255, 117, 37, 1) !important;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
  0 0 8px rgba(255, 117, 37, 1) !important;
}
