.card {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  border: 1px solid #b2e6fa66;
  padding: 1.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background-color: #00019a;
  color: white;
  padding: 0.5rem 1rem;
  font-weight: 500;
  transition: background-color 0.15s ease;
}
.btn-primary:hover { background-color: #020286; }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background-color: white;
  border: 1px solid #80d6f7;
  color: #020286;
  padding: 0.5rem 1rem;
  font-weight: 500;
  transition: background-color 0.15s ease;
}
.btn-secondary:hover { background-color: #f0fafe; }

.input {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid #80d6f7;
  padding: 0.5rem 0.75rem;
}
.input:focus {
  outline: none;
  box-shadow: 0 0 0 2px #00adef;
  border-color: transparent;
}

.label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #030472;
  margin-bottom: 0.25rem;
}
