/* General layout */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  color: white;
  background: url('./vlcsnap-2025-11-11-10h41m19s709.png') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Dark overlay for readability */
.overlay {
  background: rgba(0, 0, 0, 0.6);
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

/* Content box */
.container {
  background: rgba(0, 0, 0, 0.5);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* Logo styling */
.logo {
  width: 180px;
  margin-bottom: 1.5rem;
}

/* Titles */
.title {
  font-size: 2.5rem;
  letter-spacing: 1px;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.subtitle {
  font-size: 1.1rem;
  margin-bottom: 1.8rem;
  color: #f0f0f0;
}

/* Form */
input, button {
  width: 90%;
  padding: 12px;
  margin: 8px 0;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  box-sizing: border-box;
}

input {
  background: rgba(255, 255, 255, 0.9);
  color: #222;
}

button {
  background-color: #ff7b00;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.1s;
}

button:hover {
  background-color: #ff8e1a;
  transform: translateY(-1px);
}

/* Message */
#message {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #ffb84d;
}

/* Footer */
footer {
  background-color: #111;
  text-align: center;
  padding: 1.2rem;
  border-top: 3px solid #ff7b00;
}

footer a {
  color: #ff8e1a;
  text-decoration: none;
  font-weight: 500;
}

footer a:hover {
  text-decoration: underline;
}

/* Footer logo */
.footer-logo {
  width: 140px;
  display: block;
  margin: 0 auto 0.6rem auto;
}

/* Responsive */
@media (max-width: 500px) {
  .container {
    padding: 2rem 1.5rem;
  }
  .title {
    font-size: 2rem;
  }
  .subtitle {
    font-size: 1rem;
  }
}
