html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}
.login-label {
    color: #EAEAEA;
    font-weight: 600;
    margin-bottom: 10px;
}
.referral-journey {
    width: 90%;
    margin: 40px auto;
    padding: 40px;
    border-radius: 24px;
    background: linear-gradient(135deg,#111,#1a1a1a);
    border: 1px solid rgba(212,175,55,.20);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.journey-badge {
    background: #E50914;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
}

.section-header h2 {
    color: #D4AF37;
    margin-top: 20px;
}

.section-header p {
    color: #d6d6d6;
}

.journey-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.journey-step {
    width: 180px;
    min-height: 180px;
    background: #161616;
    border: 1px solid rgba(212,175,55,.15);
    border-radius: 18px;
    padding: 20px;
    text-align: center;
    transition: .3s;
}

    .journey-step:hover {
        transform: translateY(-5px);
    }

.step-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.journey-step h4 {
    color: #D4AF37;
}

.journey-step p {
    color: #ccc;
    font-size: 14px;
}

.journey-arrow {
    color: #FFD700;
    font-size: 28px;
    font-weight: bold;
}

.reward-step {
    background: linear-gradient( 135deg, rgba(212,175,55,.15), rgba(255,215,0,.08) );
}