@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

body {
    font-family: "Poppins", sans-serif;
}

.customer-auth-page {
    min-height: 100vh;
    margin: 0;
    display: grid;
    place-items: center;
    padding: 1.5rem;
    background:
        radial-gradient(circle at 10% 15%, rgba(14, 165, 164, 0.18), transparent 35%),
        radial-gradient(circle at 90% 80%, rgba(249, 115, 22, 0.18), transparent 35%),
        linear-gradient(155deg, #f8fafc, #ecfeff);
}

.customer-auth-card {
    width: 100%;
    max-width: 460px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 18px;
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.15);
    padding: 1.5rem;
}

.customer-auth-card-wide {
    max-width: 700px;
}

.customer-auth-logo {
    width: 58px;
    height: 58px;
    object-fit: contain;
    border-radius: 12px;
    padding: 4px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
    margin-bottom: 0.75rem;
}

.customer-auth-card .form-control {
    border-radius: 10px;
}

.customer-auth-card .btn-primary {
    border: 0;
    border-radius: 10px;
    background: linear-gradient(120deg, #0ea5a4, #0f766e);
}

.customer-auth-card .btn-primary:hover,
.customer-auth-card .btn-primary:focus {
    background: linear-gradient(120deg, #0f766e, #115e59);
}

.auth-links {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.auth-links a {
    text-decoration: none;
    font-size: 0.92rem;
}

.password-note {
    font-size: 0.86rem;
    color: #475569;
}

.customer-page {
    min-height: 100vh;
    background: linear-gradient(145deg, #f8fafc, #f0fdfa);
}

.product-thumb {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.shop-product-thumb {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background: #fff;
    padding: 0.25rem;
}

.placeholder-box {
    height: 160px;
    background: rgba(148, 163, 184, 0.18);
    display: grid;
    place-items: center;
    color: #64748b;
    border-radius: 8px;
}

.review-mini-form textarea {
    resize: vertical;
}

@media (max-width: 768px) {
    .customer-auth-card {
        padding: 1rem;
    }

    .auth-links {
        flex-direction: column;
        align-items: flex-start;
    }
}
