body {
  background-color: #f0f0f0;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  background-image: url('');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.login-wrapper {
  width: 100%;
  max-width: 420px;
  background-color: rgba(255,255,255,0.95);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.logo-container {
  background: #f78da7;
  padding: 2rem 1.5rem;
  text-align: center;
}

.logo-container img { max-width: 150px; }

.form-container { padding: 2rem; }

.form-control-lg {
    min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
    padding: .5rem 1rem;
    font-size: 1rem;
    border-radius: var(--bs-border-radius-lg);
}

.btn-lg {
    --bs-btn-padding-y: 0.5rem;
    --bs-btn-padding-x: 1rem;
    --bs-btn-font-size: 1rem;
    --bs-btn-border-radius: var(--bs-border-radius-lg);
}

h1 {
  font-size: 1.8rem;
  color: #333;
  text-align: center;
  margin-bottom: 1.5rem;
}

.btn-custom {
  background-color: #f78da7;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.8rem;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-custom:hover {
  background-color: #f56276;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(247,141,167,0.4);
}

.link-custom { color: #333; text-decoration: none; }
.link-custom:hover { text-decoration: underline; color: #000000; }

.form-control { border-radius: 12px !important; }