/* --- Variable Definitions --- */
:root {
    --primary-accent: #00d1b2; /* The bright cyan/teal color */
    --primary-accent-light: #e8fcf8;
    --light-cyan-bg: #f3fcfd;
    --text-dark: #363636;
    --border-color: #e6e6e6;
}

/* --- General Body & Font Styling --- */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
}
.bg-light-cyan {
    background: linear-gradient(to bottom, #f3fcfd, #e9f7f9);
}

/* --- Header --- */
.navbar-brand {
    font-size: 1.5rem;
}
.navbar-brand .bi {
    color: var(--primary-accent);
}
.text-primary-accent {
    color: var(--primary-accent);
}
.nav-link {
    font-weight: 500;
}
.nav-link:hover {
    color: var(--primary-accent);
}

/* --- Buttons --- */
.btn-primary-accent {
    background-color: var(--primary-accent);
    border-color: var(--primary-accent);
    color: #fff;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}
.btn-primary-accent:hover {
    background-color: #00b89d;
    border-color: #00b89d;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* --- Main Content Cards --- */
.content-card {
    background-color: #fff;
    border-radius: 1.25rem;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

/* --- Hero Section Specifics --- */
h1 .highlight-text {
    background-color: var(--primary-accent-light);
    color: var(--primary-accent);
    padding: 0.2rem 0.8rem;
    border-radius: 0.5rem;
    display: inline-block;
}

.feature-list-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}
.feature-list-item .bi {
    color: var(--primary-accent);
}

/* --- CSS Captcha Illustration --- */
.captcha-illustration {
    background-color: #f7f9fa;
    border: 1px solid #eef2f5;
    border-radius: 1rem;
    padding: 1rem;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.captcha-header { display: flex; align-items: center; margin-bottom: 1.5rem; position: relative; }
.captcha-header .dot { height: 12px; width: 12px; border-radius: 50%; margin-right: 6px; }
.captcha-header .dot.red { background-color: #ff5f56; }
.captcha-header .dot.yellow { background-color: #ffbd2e; }
.captcha-header .dot.green { background-color: #27c93f; }
.captcha-icons { position: absolute; right: 0; display: flex; gap: 0.5rem; }
.captcha-icons i { color: #fff; background-color: var(--primary-accent); padding: 5px; border-radius: 8px; font-size: 1rem; }
.captcha-body .captcha-image { background-color: #e6f3f2; color: #578a85; font-size: 2.5rem; text-align: center; padding: 1rem; border-radius: 0.5rem; margin-bottom: 1rem; font-family: 'Courier New', Courier, monospace; }
.captcha-body .captcha-input { width: 100%; border: 1px solid #dbe3e8; padding: 0.75rem; border-radius: 0.5rem; font-size: 1.2rem; background-color: #fff; }

/* --- Make Money Section --- */
.feature-box {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1.25rem;
    font-weight: 600;
    transition: all 0.3s ease;
}
.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-accent);
}
.feature-box .bi {
    color: #27c93f; /* Green checkmark */
    margin-right: 0.5rem;
    font-weight: bold;
}

/* --- FAQ Accordion --- */
.accordion-container {
    max-width: 700px;
}
.accordion-item {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 0.75rem !important; /* Override Bootstrap */
    margin-bottom: 1rem;
}
.accordion-header {
    font-weight: 600;
}
.accordion-button {
    border-radius: 0.75rem !important;
    font-weight: 600;
    color: var(--text-dark);
}
.accordion-button:not(.collapsed) {
    background-color: var(--primary-accent-light);
    color: var(--primary-accent);
    box-shadow: none;
}
.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-accent);
}
.accordion-body {
    text-align: left;
}

/* --- Footer --- */
.footer-card {
    background-color: var(--primary-accent-light);
    border-radius: 1.25rem;
    padding: 2.5rem;
}













/* --- Authentication Page Styles (auth.php) --- */

.bg-auth-gradient {
    /* Gradient from the image, soft cyan to a soft green-ish cyan */
    background: linear-gradient(135deg, #e0f7fa 0%, #d4f8e8 100%);
    min-height: 100vh;
}

.auth-card {
    background-color: #fff;
    border-radius: 1.25rem; /* Nice, modern rounded corners */
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Style for the form inputs */
.auth-card .form-control {
    border-radius: 0.75rem;
    padding: 1.1rem 1rem;
    border-color: #dbe3e8;
}

.auth-card .form-control:focus {
    border-color: var(--primary-accent); /* Using the variable from previous styles */
    box-shadow: 0 0 0 0.2rem rgba(0, 209, 178, 0.25);
}

.auth-card .form-floating > label {
    padding: 1.1rem 1rem; /* Match padding for correct floating label position */
}

/* Password show/hide icon */
.password-toggle-icon {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    cursor: pointer;
    color: #9fa9b3;
    transition: color 0.2s;
}

.password-toggle-icon:hover {
    color: var(--text-dark);
}

/* Mockup for the reCAPTCHA box */
.re-captcha-mockup {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f7f9fa;
    border: 1px solid #dbe3e8;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
}
.re-captcha-mockup .form-check-input {
    border-color: #b0b8bf;
}

/* Links at the bottom (Sign up, Password recovery) */
.auth-link {
    color: #6c757d;
    text-decoration: underline;
    text-decoration-color: #ced4da;
    text-underline-offset: 4px;
    margin: 0 0.75rem;
    transition: all 0.2s ease-in-out;
}

.auth-link:hover {
    color: var(--primary-accent);
    text-decoration-color: var(--primary-accent);
}