.starter-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.logo-background {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.background-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  height: 80vh;
  object-fit: contain;
  opacity: 0.1;
  z-index: 1;
}

.white-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 2;
}

.starter-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 600px;
  padding: 2rem;
  color: #333;
}

.starter-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  font-family: 'Staatliches', cursive;
  color: #333;
}

.starter-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 2rem;
  font-family: 'Raleway', sans-serif;
  color: #666;
}

.starter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.password-input {
  padding: 1rem;
  border: 2px solid #ddd;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: 'Raleway', sans-serif;
  transition: border-color 0.3s ease;
}

.password-input:focus {
  outline: none;
  border-color: #ff69b4;
}

.submit-btn {
  padding: 1rem 2rem;
  background-color: #ff69b4;
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.1rem;
  font-weight: bold;
  font-family: 'Raleway', sans-serif;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
  background-color: #ff1493;
  transform: translateY(-2px);
}

.success-message {
  background-color: #d4edda;
  color: #155724;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  font-family: 'Raleway', sans-serif;
}

.error-message {
  background-color: #f8d7da;
  color: #721c24;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  font-family: 'Raleway', sans-serif;
}

@media (max-width: 768px) {
  .starter-content {
    padding: 1rem;
  }

  .starter-form {
    max-width: 100%;
  }

  .background-logo {
    width: 90vw;
    height: 60vh;
  }
}