body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  color: white;
  background: linear-gradient(180deg, #2c0344 0%, #0077ff 100%);
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.base-container{
  display: flex;
  width: 75%;
  margin: auto;
  align-items: center;
}

.base-container img{
  width: 50%;
}

/* Container */
.container {
  max-width: 800px;
  padding: 20px;
}

/* Heading */
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

/* Buttons */
.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.button {
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.button.primary {
  background-color: #6a0dad;
  color: white;
}

.button.primary:hover {
  background-color: white;
  color: #6a0dad;
  border: 2px solid #6a0dad;
}

.button.secondary {
  background-color: #fff;
  color: #0077ff;
  border: 2px solid #0077ff;
}

.button.secondary:hover {
  background-color: #0077ff;
  color: white;
}

/* Footer link */
.footer {
  margin-top: 30px;
  font-size: 0.9rem;
}

.footer a {
  color: #00d4ff;
  text-decoration: none;
}

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

.form-select,
.form-control {
  background-color: #2e0b4d;
  border: none;
  color: white;
  padding: 10px;
}

.form-select:focus,
.form-control:focus {
  border-color: #a351ff;
  box-shadow: 0 0 10px #a351ff;
}