﻿body {
    background: #f5f7fb;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.signup-wrapper {
    min-height: 100vh;
    display: flex;
}
feature-images {
    position: relative;
    z-index: 1;
}

.feature-images img {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.feature-images img:hover {
    transform: scale(1.05);
}

/* RIGHT SIDE / FORM */
.signup-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px 32px;
    box-shadow: 0 14px 40px rgba(148, 163, 184, 0.35);
}

.signup-title {
    font-size: 28px;
    font-weight: 700;
}

.signup-subtitle {
    color: #6b7280;
    font-size: 14px;
}

.form-label {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    color: #6b7280;
}

.form-control {
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 14px;
}

    .form-control:focus {
        border-color: #3b82f6;
        box-shadow: 0 0 0 0.15rem rgba(59, 130, 246, 0.25);
    }

/* CAPTCHA placeholder */
.captcha-box {
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f9fafb;
}

.captcha-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.captcha-checkbox {
    width: 20px;
    height: 20px;
    border: 1px solid #9ca3af;
    border-radius: 4px;
    background: #fff;
}

.captcha-text {
    font-size: 13px;
    color: #374151;
}

.captcha-brand {
    font-size: 10px;
    text-align: right;
    color: #9ca3af;
}

/* Next button */
.btn-next {
    background: #2f86ff;
    border-color: #2f86ff;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
}

    .btn-next:hover {
        background: #2563eb;
        border-color: #2563eb;
    }

/* Divider */
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 18px 0;
    color: #9ca3af;
    font-size: 12px;
}

    .divider::before,
    .divider::after {
        content: "";
        flex: 1;
        border-bottom: 1px solid #e5e7eb;
    }

    .divider span {
        padding: 0 12px;
    }

/* Google button */
.btn-google {
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

    .btn-google img {
        width: 18px;
        height: 18px;
    }

.signup-footer {
    font-size: 11px;
    color: #6b7280;
    margin-top: 12px;
}

    .signup-footer a {
        text-decoration: none;
        color: #2563eb;
    }

/* RESPONSIVE */
@media (max-width: 991.98px) {
    .signup-hero {
        margin-bottom: 40px;
    }
}

@media (max-width: 575.98px) {
    .signup-card {
        padding: 22px 18px;
    }
}
