/* ==========================================
   SIGNUP PAGE LAYOUT
   ========================================== */
.signup-image-side {
    background-image: url('/img/signup_bg.jpg'); /* Make sure to save your cookie image here! */
    background-size: cover;
    background-position: center;
}

.signup-form-wrapper {
    max-width: 500px;
    width: 100%;
    padding: 2rem;
}

/* ==========================================
   CHECKBOX STYLING
   ========================================== */
.form-check-label {
    font-size: 0.75rem;
    line-height: 1.3;
    color: white;
    font-family: 'Inter', sans-serif;
}

/* Optional: Make the checkbox match the CookLoop pink when checked */
.form-check-input:checked {
    background-color: #e27b7d;
    border-color: #e27b7d;
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(226, 123, 125, 0.25);
    border-color: #e27b7d;
}