/* General Styles */
body {
  font-family: 'Arial', sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.main-container {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  position: relative;
  z-index: 10;
}

.logo-container img {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
  margin: 0 auto 20px;
}

.info-container h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.input-group {
  margin-bottom: 15px;
}

.input-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #555;
}

.input-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  transition: border-color 0.3s;
}

.input-group input:focus {
  border-color: #ff0000;
  outline: none;
}

.inline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.keep {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.keep input {
  margin-right: 10px;
}

.submit-button button {
  width: 100%;
  padding: 10px;
  background-color: #ff0000;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

.submit-button button:hover {
  background-color: #e60000;
}

.signup-link {
  text-align: center;
  margin-top: 15px;
}

.signup-link h4 {
  margin: 0;
  font-size: 14px;
  color: #555;
}

.signup-link a {
  color: #ff0000;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.signup-link a:hover {
  text-decoration: underline;
}

.refresh-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #ff0000;
  color: #fff;
  border: none;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

.refresh-button:hover {
  background-color: #e60000;
}

.error {
  color: red;
  font-size: 12px;
  margin-top: 5px;
}

/* Tech Theme Moving Animation */
@keyframes moveBackground {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: linear-gradient(270deg, #ff0000, #ff7e00, #ff0000);
  animation: moveBackground 10s linear infinite;
  z-index: -1;
}

/* Responsive Styles */
@media (max-width: 600px) {
  .main-container {
    padding: 15px;
  }

  .input-group label, .inline label {
    font-size: 14px;
  }

  .input-group input {
    padding: 8px;
  }

  .submit-button button, .signup-link a {
    font-size: 14px;
  }
}