html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: 'Poppins', Arial, sans-serif;
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://res.cloudinary.com/dwwiflr7l/image/upload/fl_preserve_transparency/v1734433162/background_iq0o5z.jpg?_s=public-apps') no-repeat center center fixed;
  background-size: cover;
  filter: blur(8px);
  -webkit-filter: blur(8px);
  z-index: -1;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.login-box {
  background: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  width: 400px;
  text-align: center;
}

.discord-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(88, 101,242, 1);
  width: 100%;
  color: white;
  text-decoration: none;
  border: none;
  gap: 10px; /* Adds space between icon and text */
  border-radius: 8px;
  padding: 15px 10px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  margin-top: 15px;
}

.discord-button .fab.fa-discord {
  margin-right: 8px; /* Alternative method with margin */
}

.discord-button:hover {
  background-color: rgb(80, 90, 194);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.input-container {
  margin: 10px 0;
}

.input-container input {
  width: 100%;
  padding: 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: border-color 0.3s;
  box-sizing: border-box;
}

.input-container input:focus {
  border-color: #5865F2;
  outline: none;
}

.login-box img {
  width: 60px;
  margin-bottom: 15px;
}

.login-box h1 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #333;
}

.login-box .connecting {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
  background: #f9f9f9;
  padding: 10px;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 12px;
}

.footer a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
}

.footer a:hover {
  text-decoration: underline;
}
