
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.hero-section {
  min-height: 100vh;
  background: linear-gradient(to bottom right, #1a488e, #1e5cb3);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
}

.container {
  width: 100%;
  max-width: 64rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 0 1rem;
}

.logo-container {
  width: 100%;
  max-width: 16rem;
  margin-bottom: 2rem;
}

.logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.card {
  width: 100%;
  max-width: 35rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.title {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
  color: #000000;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.label {
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: 500;
  color: #000000;
}

.select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.375rem;
  font-size: clamp(0.875rem, 2vw, 1rem);
  color: #000000;
  background-color: white;
}

.select:focus {
  outline: none;
  border-color: #03bcf9;
  box-shadow: 0 0 0 2px rgba(3, 188, 249, 0.2);
}

.button {
  width: 100%;
  padding: clamp(0.625rem, 2vw, 0.75rem);
  background: linear-gradient(to right, #1a488e, #1e5cb3);
  color: white;
  border: none;
  border-radius: 0.375rem;
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s;
}

.button:hover:not(:disabled) {
  background: linear-gradient(to right, #1e5cb3, #1a488e);
}

.button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Responsive adjustments for different screen sizes */
@media (max-width: 640px) {
  .logo-container{
    width: 60%;
  }
  .hero-section {
    padding: 1rem 0.5rem;
  }

  .container {
    padding: 0 0.5rem;
  }

  .card {
    padding: 1.25rem;
  }
  .card{
    width: 80%;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .hero-section {
    padding: 1.5rem;
  }

  .container {
    padding: 0 1rem;
  }
}

@media (min-width: 1025px) {
  .hero-section {
    padding: 2rem;
  }
}