
/* assets/css/login.css */
body.login-wrapper {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(145deg, #0a0c10, #12151c);
  color: #fff;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-container {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 30px;
  max-width: 360px;
  width: 100%;
  box-shadow: 0 0 25px rgba(255, 60, 60, 0.1);
  text-align: center;
}

.login-container h2 {
  color: #ff3c3c;
  margin-bottom: 20px;
  font-size: 24px;
}

.input-group {
  position: relative;
  margin-bottom: 20px;
}

.input-group input {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 10px 38px 10px 12px;
  border-radius: 8px;
  border: none;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 15px;
}

.toggle-password {
  position: absolute;
  right: 12px;
  top: 10px;
  color: #ff3c3c;
  cursor: pointer;
}

.full-btn {
  width: 100%;
  background: #ff3c3c;
  border: none;
  padding: 12px;
  border-radius: 8px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: 44px;
  font-size: 15px;
}

.full-btn:hover {
  background: #ff1a1a;
}

.loader {
  display: none;
  width: 16px;
  height: 16px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
