@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&display=swap');

body {
  background-color: #0c0f14;
  color: #e4faff;
  font-family: 'Orbitron', sans-serif;
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
  transition: 0.3s ease-in-out;
}
.glass-card:hover {
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.glass-input {
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(0, 255, 255, 0.15);
  color: #e4faff;
  backdrop-filter: blur(4px);
}
.glass-input::placeholder {
  color: #a8d7e6;
  font-style: italic;
}

label {
  color: #00f2ff;
  font-weight: 600;
  text-shadow: 0 0 4px rgba(0, 255, 255, 0.2);
}

.btn-glow {
  border: 1px solid #00f2ff;
  background: transparent;
  color: #00f2ff;
  font-weight: bold;
  transition: 0.3s ease;
}
.btn-glow:hover {
  background-color: #00f2ff;
  color: #000;
  box-shadow: 0 0 12px #00f2ff;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #00f2ff;
  color: #00f2ff;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  transition: 0.3s;
}
.social-btn:hover {
  background-color: #00f2ff;
  color: #000;
  box-shadow: 0 0 10px #00f2ff;
}

a {
  color: #00f2ff;
  text-decoration: underline;
}
a:hover {
  color: #00ffff;
  text-shadow: 0 0 4px #00ffff;
}

/* Кастомные алерты */
.custom-alert {
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(6px);
  text-align: center;
}
.custom-alert.info {
  background: rgba(0, 242, 255, 0.1);
  border: 1px solid #00f2ff;
  color: #00f2ff;
  box-shadow: 0 0 10px rgba(0, 242, 255, 0.4);
}
.custom-alert.success {
  background: rgba(0, 255, 128, 0.1);
  border: 1px solid #00ff80;
  color: #00ff80;
  box-shadow: 0 0 10px rgba(0, 255, 128, 0.4);
}
.custom-alert.error {
  background: rgba(255, 0, 64, 0.1);
  border: 1px solid #ff0040;
  color: #ff3366;
  box-shadow: 0 0 10px rgba(255, 0, 64, 0.4);
}