body {
  font: 14px Helvetica, sans-serif;
  color: #fff;
  background-color: #0f1015;
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  text-align: center;
  padding: 30px;
  border-radius: 15px;
  background-color: #191c24;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
  animation: fadeIn 1.5s ease-in-out;
  width: 90%;
  max-width: 400px;
}

.container img {
  width: 200px;
  height: 200px;
  animation: float 3s ease-in-out infinite;
  margin-bottom: 20px;
}

p {
  margin: 10px 0;
}

.login-btn,
.submit-btn {
  background-color: #7289da;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  margin-top: 20px;
}

.login-btn:hover,
.submit-btn:hover {
  background-color: #5b6eae;
}

.login-btn i,
.submit-btn i {
  font-size: 24px;
  margin-right: 10px;
}

.input-container {
  margin-top: 20px;
  margin-bottom: 30px;
}

.input-container input[type="text"] {
  width: 90%;
  padding: 15px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  text-align: center;
  color: #fff;
  background-color: #333;
  transition: background-color 0.3s, box-shadow 0.3s;
}

.input-container input[type="text"]::placeholder {
  color: #aaa;
}

.input-container input[type="text"]:hover {
  background-color: #444;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.input-container input[type="text"]:focus {
  background-color: #555;
  outline: none;
  box-shadow: 0 0 15px rgba(0, 123, 255, 0.5);
}

/* Step styling */
.step {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step i {
  font-size: 24px;
  color: #f1c40f;
  margin-right: 10px;
}

.step p {
  font-size: 20px;
  font-weight: bold;
}

/* Footer Styling */
footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: #191c24;
  text-align: center;
  padding: 15px 0;
  color: #fff;
  font-size: 14px;
  font-family: Helvetica, sans-serif;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

footer a {
  color: #547de3;
  font-weight: 600 !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  font-weight: 600 !important;
  color: #4a68c8;
}

footer .heart {
  color: #e74c3c;
  animation: fadeIn 2.5s ease-in-out infinite;
}

/* Animations */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}
