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

body {
    background-color: #f3f4f6;
    font-family: 'Outfit', system-ui, -apple-system, sans-serif;
    color: #1f2937;
}


.auth-container {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    min-height: 100vh;
}

.auth-card {
    background: #ffffff;
    width: 100%;
    max-width: 600px;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-title {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.auth-subtitle {
    color: #6b7280;
    font-size: 15px;
}

.badge-info {
    display: inline-block;
    background: #eff6ff;
    color: #3b82f6;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 99px;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-weight: 600;
    font-size: 14px;
    color: #374151;
    margin-bottom: 8px;
    display: block;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    font-size: 15px;
    transition: all 0.2s ease;
}

.form-control:focus {
    background: #fff;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    outline: none;
}

.input-group {
    display: flex;
    align-items: center;
    gap: 0;
    /* Remove gap to allow seamless look if desired, or keep it small */
}

.input-group .form-control {
    flex: 1;
    width: auto;
}

.input-group-text {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-right: none;
    border-radius: 12px 0 0 12px;
    padding: 12px 16px;
    color: #6b7280;
    font-weight: 600;
}

.input-group .form-control.border-start-0 {
    border-radius: 0 12px 12px 0;
}

.btn-location {
    white-space: nowrap;
    background: #eff6ff;
    color: #2563eb;
    border: 1px solid #dbeafe;
    border-radius: 12px;
    padding: 0 20px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-location:hover {
    background: #dbeafe;
    transform: translateY(-1px);
}

.form-check {
    margin-top: 10px;
    margin-bottom: 24px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
}

.form-check-label {
    font-size: 13px;
    color: #4b5563;
    line-height: 1.5;
}

.btn-submit {
    width: 100%;
    background: #2563eb;
    color: white;
    font-weight: 700;
    font-size: 16px;
    padding: 14px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
    transition: all 0.2s;
}

.btn-submit:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}

@media (max-width: 640px) {
    .auth-container {
        padding: 20px 10px;
        /* Reduced side padding */
    }

    .auth-card {
        padding: 20px;
        /* Slightly tighter padding inside card */
    }

    .input-group {
        flex-direction: row;
        /* Keep side-by-side */
    }

    .btn-location {
        width: auto;
        /* Don't force full width */
        padding: 12px 14px;
        /* Slightly tighter padding */
        font-size: 13px;
        /* Smaller text for fit */
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .form-control {
        min-width: 0;
        /* Allow shrinking */
    }
}

/* Specific Adjustment for Seller Page (Wider Form) */
@media (min-width: 900px) {
    .seller-card {
        max-width: 900px;
        /* Much wider than standard 600px */
    }
}