/* Global Styles */
body {
  background-color: #1e1e1e;
  color: #f4f4f4;
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100vw;
  background-image: url('https://cdn.prod.website-files.com/5a9ee6416e90d20001b20038/64f5e02cb5805eb6fd8e503c_Rectangle%20(98).svg');
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  backdrop-filter: blur(15px);
  background-color: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  text-align: center;
  width: min(90%, 500px);
}

.header {
  font-size: 48px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #DA70D6;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

.icon {
  height: 48px;
  width: 48px;
}

.description {
  font-size: 18px;
  color: #d1d1d1;
  line-height: 1.6;
}

.input {
  width: 100%;
  max-width: 450px;
  background-color: transparent;
  border: 2px solid rgb(100, 100, 100);
  font-size: 16px;
  padding: 14px;
  text-align: center;
  color: #DA70D6;
  outline: none;
  border-radius: 50px;
  transition: border-color 200ms, box-shadow 200ms;
}

.input::placeholder {
  color: #a1a1a1;
}

.input:focus {
  border-color: #685dff;
  box-shadow: 0 0 10px rgba(104, 93, 255, 0.6);
}

.input:disabled {
  color: #757575;
}

.logo {
  height: 60px;
  width: 60px;
  will-change: filter;
  transition: filter 300ms;
}

.logo:hover {
  filter: drop-shadow(0 0 30px #685dff);
}

/* Footer */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  bottom: 0;
  color: #DA70D6;
  backdrop-filter: blur(10px);
}

.footer a,
.footer a:visited {
  color: #DA70D6;
  font-size: 16px;
  text-decoration: none;
  text-underline-offset: 2.5px;
  transition: color 200ms, text-decoration 200ms;
}

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

.footer div {
  display: flex;
  gap: 30px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  color: #DA70D6;
  z-index: 1000;
  padding: 10px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.navbar a {
  float: left;
  display: block;
  color: #DA70D6;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
  transition: background-color 300ms, color 300ms;
}

.navbar a:hover {
  background-color: #DA70D6;
  color: black;
}

/* Button Styles */
.button {
  background-color: rgba(0, 0, 0, 0.7);
  border: none;
  color: #DA70D6;
  padding: 16px 36px;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  margin: 5px 3px;
  cursor: pointer;
  border-radius: 50px;
  transition: background-color 300ms, color 300ms, transform 200ms;
}

.button:hover {
  background-color: #ffffff;
  color: black;
  transform: scale(1.05);
}
