:root {
    --pickle-yellow: #fcd144;
    --pickle-green: #2E8B57;
    --pickle-blue: #4477ce;
}
.bg-pickle-yellow { background-color: var(--pickle-yellow); }
.bg-pickle-green { background-color: var(--pickle-green); }
.text-pickle-green { color: var(--pickle-green); }
.btn-pickle-blue { background-color: var(--pickle-blue); color: white; border: none; }
.btn-pickle-blue:hover { background-color: #3561a8; color: white; }

/* Why Go Digital checkmarks */
.digital-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    background-color: var(--pickle-green);
    color: #fff;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
}
.login-card {
    max-width: 500px;
    width: 100%;
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #E8F5E8 0%, #F0F8F0 100%);
    padding: 100px 0;
    text-align: center;
}

/* Feature Icons */
.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Form Card Overlap */
.contact-section {
    background: linear-gradient(135deg, #E8F5E8 0%, #F0F8F0 100%);
    padding: 80px 0;
}

/* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}