* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #c4c3c3;
}

/* Splash Screen Styling */
.splash-screen {
  position: fixed;
  background-color: #3361ed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  z-index: 9999;
  animation: fadeOut 1.7s ease forwards;
  animation-delay: 1s;
}

.splash-screen h1 {
  font-size: 3rem;
  margin-bottom: 30px;
}

.splash-screen img {
  align-self: center;
  display: block;
  margin: 0 auto;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: translateY(0%);
  }

  100% {
    opacity: 0;
    transform: translateY(-100%);
  }
}

/* Form Styling */
.toggle-buttons {
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  padding: 0px, 5px;
  cursor: pointer;
}

.toggle-buttons button {
  flex: 1;
  padding: 15px;
  text-align: center;
  cursor: pointer;
  font-size: 1rem;
}

.toggle-buttons button.active {
  border: 1px solid #3361ed;
  background-color: #3361ed;
  color: #f0f0f0;
}

.form-container {
  width: 450px;           
  max-width: 600px;
  margin: auto;
  padding: 40px;         
  background: white;
  border-radius: 12px;    
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.12); 
}

.form-container form {
  display: none;
}

.form-container form.active {
  display: block;
}

.form-container form h2 {
  margin-bottom: 10px;
  text-align: center;
}

.form-container form input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.form-container form .form-btn {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 4px;
  background-color: #3361ed;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 10px;
}

iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}